diff --git a/tests/PHPStan/Parser/PhpDocParserTest.php b/tests/PHPStan/Parser/PhpDocParserTest.php index 849ba674..aaf3d2b6 100644 --- a/tests/PHPStan/Parser/PhpDocParserTest.php +++ b/tests/PHPStan/Parser/PhpDocParserTest.php @@ -2953,10 +2953,10 @@ public function provideMultiLinePhpDocData(): iterable new IdentifierTypeNode('Foo'), false, '$foo', - '1st multi world description with empty lines' . PHP_EOL . - PHP_EOL . - PHP_EOL . - 'some text in the middle', + '1st multi world description with empty lines + + +some text in the middle', ), ), new PhpDocTextNode(''), @@ -2967,10 +2967,10 @@ public function provideMultiLinePhpDocData(): iterable new IdentifierTypeNode('Bar'), false, '$bar', - '2nd multi world description with empty lines' . PHP_EOL . - PHP_EOL . - PHP_EOL . - 'test', + '2nd multi world description with empty lines + + +test', ), ), @@ -4948,7 +4948,8 @@ public function provideRealWorldExampleData(): Iterator new IdentifierTypeNode('\Drupal\Core\Field\FieldStorageDefinitionInterface'), false, '$field_definition', - PHP_EOL . ' The field definition.', + ' + The field definition.', ), ), new PhpDocTextNode(''), @@ -4956,7 +4957,8 @@ public function provideRealWorldExampleData(): Iterator '@return', new ReturnTagValueNode( new IdentifierTypeNode('array'), - PHP_EOL . " An empty array if there is no schema, or an associative array with the + " + An empty array if there is no schema, or an associative array with the following key/value pairs: - columns: An array of Schema API column specifications, keyed by column name. The columns need to be a subset of the properties defined in