@@ -2552,6 +2552,20 @@ function foo(string $arg) {}
                 function foo(string $arg): string {}
                 EOD,
         ];
+
+        yield 'multiline @var must be kept even if there is no description on the phpdoc tag line' => [
+            <<<'EOD'
+                <?php
+                class Cl {
+                    /**
+                     * @var string
+                     *             - foo
+                     *             - foo2
+                     */
+                    public string $prop;
+                }
+                EOD,
+        ];
     }
 
     /**