Skip to content

Commit 5d9ed08

Browse files
committed
Return to the more original behaviour
1 parent 769ba88 commit 5d9ed08

File tree

2 files changed

+21
-57
lines changed

2 files changed

+21
-57
lines changed

src/Parser/PhpDocParser.php

+1-37
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ private function parseChild(TokenIterator $tokens): Ast\PhpDoc\PhpDocChildNode
155155

156156
$startLine = $tokens->currentTokenLine();
157157
$startIndex = $tokens->currentTokenIndex();
158-
$text = $this->parsePhpDocTextNode($tokens);
158+
$text = $this->parseText($tokens);
159159

160160
return $this->enrichWithAttributes($tokens, $text, $startLine, $startIndex);
161161
}
@@ -313,42 +313,6 @@ private function parseOptionalDescriptionAfterDoctrineTag(TokenIterator $tokens)
313313
}
314314

315315

316-
private function parsePhpDocTextNode(TokenIterator $tokens): Ast\PhpDoc\PhpDocTextNode
317-
{
318-
$text = '';
319-
320-
$endTokens = [Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC, Lexer::TOKEN_END];
321-
322-
// if the next token is EOL, everything below is skipped and empty string is returned
323-
while (!$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL)) {
324-
$tmpText = $tokens->getSkippedHorizontalWhiteSpaceIfAny() . $tokens->joinUntil(Lexer::TOKEN_PHPDOC_EOL, ...$endTokens);
325-
$text .= $tmpText;
326-
327-
// stop if we're not at EOL - meaning it's the end of PHPDoc
328-
if (!$tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_EOL, Lexer::TOKEN_CLOSE_PHPDOC)) {
329-
break;
330-
}
331-
332-
$tokens->pushSavePoint();
333-
$tokens->next();
334-
335-
// if we're at EOL, check what's next
336-
// if next is a PHPDoc tag, EOL, or end of PHPDoc, stop
337-
if ($tokens->isCurrentTokenType(Lexer::TOKEN_PHPDOC_TAG, Lexer::TOKEN_DOCTRINE_TAG, ...$endTokens)) {
338-
$tokens->rollback();
339-
break;
340-
}
341-
342-
// otherwise if the next is text, continue building the description string
343-
344-
$tokens->dropSavePoint();
345-
$text .= $tokens->getDetectedNewline() ?? "\n";
346-
}
347-
348-
return new Ast\PhpDoc\PhpDocTextNode(trim($text, " \t"));
349-
}
350-
351-
352316
public function parseTag(TokenIterator $tokens): Ast\PhpDoc\PhpDocTagNode
353317
{
354318
$tag = $tokens->currentTokenValue();

tests/PHPStan/Parser/PhpDocParserTest.php

+20-20
Original file line numberDiff line numberDiff line change
@@ -3968,8 +3968,8 @@ public function provideMultiLinePhpDocData(): iterable
39683968
' *' . PHP_EOL .
39693969
' */',
39703970
new PhpDocNode([
3971-
new PhpDocTextNode(''),
39723971
new PhpDocTextNode(
3972+
PHP_EOL .
39733973
'MultiLine' . PHP_EOL .
39743974
'description',
39753975
),
@@ -5073,13 +5073,13 @@ public function providerDebug(): Iterator
50735073
'OK class line',
50745074
$sample,
50755075
new PhpDocNode([
5076-
new PhpDocTextNode('Returns the schema for the field.'),
5077-
new PhpDocTextNode(''),
5078-
new PhpDocTextNode('This method is static because the field schema information is needed on
5076+
new PhpDocTextNode('Returns the schema for the field.
5077+
5078+
This method is static because the field schema information is needed on
50795079
creation of the field. FieldItemInterface objects instantiated at that
5080-
time are not reliable as field settings might be missing.'),
5081-
new PhpDocTextNode(''),
5082-
new PhpDocTextNode('Computed fields having no schema should return an empty array.'),
5080+
time are not reliable as field settings might be missing.
5081+
5082+
Computed fields having no schema should return an empty array.'),
50835083
]),
50845084
];
50855085
}
@@ -5127,13 +5127,13 @@ public function provideRealWorldExampleData(): Iterator
51275127
'OK FieldItemInterface::schema',
51285128
$sample,
51295129
new PhpDocNode([
5130-
new PhpDocTextNode('Returns the schema for the field.'),
5131-
new PhpDocTextNode(''),
5132-
new PhpDocTextNode('This method is static because the field schema information is needed on
5130+
new PhpDocTextNode('Returns the schema for the field.
5131+
5132+
This method is static because the field schema information is needed on
51335133
creation of the field. FieldItemInterface objects instantiated at that
5134-
time are not reliable as field settings might be missing.'),
5135-
new PhpDocTextNode(''),
5136-
new PhpDocTextNode('Computed fields having no schema should return an empty array.'),
5134+
time are not reliable as field settings might be missing.
5135+
5136+
Computed fields having no schema should return an empty array.'),
51375137
new PhpDocTextNode(''),
51385138
new PhpDocTagNode(
51395139
'@param',
@@ -5201,9 +5201,9 @@ public function provideRealWorldExampleData(): Iterator
52015201
'OK AbstractChunkedController::parseChunkedRequest',
52025202
$sample,
52035203
new PhpDocNode([
5204-
new PhpDocTextNode('Parses a chunked request and return relevant information.'),
5205-
new PhpDocTextNode(''),
5206-
new PhpDocTextNode('This function must return an array containing the following
5204+
new PhpDocTextNode('Parses a chunked request and return relevant information.
5205+
5206+
This function must return an array containing the following
52075207
keys and their corresponding values:
52085208
- last: Wheter this is the last chunk of the uploaded file
52095209
- uuid: A unique id which distinguishes two uploaded files
@@ -5247,9 +5247,9 @@ public function provideRealWorldExampleData(): Iterator
52475247
* </code>
52485248
*/",
52495249
new PhpDocNode([
5250-
new PhpDocTextNode('Finder allows searching through directory trees using iterator.'),
5251-
new PhpDocTextNode(''),
5252-
new PhpDocTextNode("<code>
5250+
new PhpDocTextNode("Finder allows searching through directory trees using iterator.
5251+
5252+
<code>
52535253
Finder::findFiles('*.php')
52545254
->size('> 10kB')
52555255
->from('.')
@@ -7563,8 +7563,8 @@ public function dataTextBetweenTagsBelongsToDescription(): iterable
75637563
' *' . PHP_EOL .
75647564
' */',
75657565
new PhpDocNode([
7566-
new PhpDocTextNode(''),
75677566
new PhpDocTextNode(
7567+
PHP_EOL .
75687568
'MultiLine' . PHP_EOL .
75697569
'description',
75707570
),

0 commit comments

Comments
 (0)