@@ -2529,7 +2529,7 @@ static function ($foo): int { return 1; };',
 static fn ($foo): int => 1;',
         ];
 
-        yield 'multiline description must be kept even if there is no description on the phpdoc tag line' => [
+        yield 'multiline @param must be kept even if there is no description on the phpdoc tag line' => [
             <<<'EOD'
                 <?php
                 /**
@@ -2540,6 +2540,18 @@ static function ($foo): int { return 1; };',
                 function foo(string $arg) {}
                 EOD,
         ];
+
+        yield 'multiline @return must be kept even if there is no description on the phpdoc tag line' => [
+            <<<'EOD'
+                <?php
+                /**
+                 * @return string
+                 *                - foo
+                 *                - foo2
+                 */
+                function foo(string $arg): string {}
+                EOD,
+        ];
     }
 
     /**