Skip to content

Commit 12f01d2

Browse files
schlndhondrejmirtes
authored andcommitted
fix HTML description detection for phpstorm stubs
1 parent c2b8bbf commit 12f01d2

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

src/Parser/TypeParser.php

+10-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
use PHPStan\PhpDocParser\Lexer\Lexer;
88
use function in_array;
99
use function str_replace;
10+
use function strlen;
1011
use function strpos;
12+
use function substr_compare;
1113
use function trim;
1214

1315
class TypeParser
@@ -380,10 +382,16 @@ public function isHtml(TokenIterator $tokens): bool
380382
return false;
381383
}
382384

385+
$endTag = '</' . $htmlTagName . '>';
386+
$endTagSearchOffset = - strlen($endTag);
387+
383388
while (!$tokens->isCurrentTokenType(Lexer::TOKEN_END)) {
384389
if (
385-
$tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)
386-
&& strpos($tokens->currentTokenValue(), '/' . $htmlTagName . '>') !== false
390+
(
391+
$tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_ANGLE_BRACKET)
392+
&& strpos($tokens->currentTokenValue(), '/' . $htmlTagName . '>') !== false
393+
)
394+
|| substr_compare($tokens->currentTokenValue(), $endTag, $endTagSearchOffset) === 0
387395
) {
388396
return true;
389397
}

tests/PHPStan/Parser/PhpDocParserTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -1301,6 +1301,20 @@ public function provideReturnTagsData(): Iterator
13011301
]),
13021302
];
13031303

1304+
yield [
1305+
'OK with HTML description',
1306+
'/** @return MongoCollection <p>Returns a collection object representing the new collection.</p> */',
1307+
new PhpDocNode([
1308+
new PhpDocTagNode(
1309+
'@return',
1310+
new ReturnTagValueNode(
1311+
new IdentifierTypeNode('MongoCollection'),
1312+
'<p>Returns a collection object representing the new collection.</p>'
1313+
)
1314+
),
1315+
]),
1316+
];
1317+
13041318
yield [
13051319
'invalid without type and description',
13061320
'/** @return */',

tests/PHPStan/Parser/TypeParserTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -2166,6 +2166,11 @@ public function provideParseData(): array
21662166
false
21672167
)),
21682168
],
2169+
[
2170+
'MongoCollection <p>Returns a collection object representing the new collection.</p>',
2171+
new IdentifierTypeNode('MongoCollection'),
2172+
Lexer::TOKEN_OPEN_ANGLE_BRACKET,
2173+
],
21692174
];
21702175
}
21712176

0 commit comments

Comments
 (0)