File tree 3 files changed +29
-2
lines changed
3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 7
7
use PHPStan \PhpDocParser \Lexer \Lexer ;
8
8
use function in_array ;
9
9
use function str_replace ;
10
+ use function strlen ;
10
11
use function strpos ;
12
+ use function substr_compare ;
11
13
use function trim ;
12
14
13
15
class TypeParser
@@ -380,10 +382,16 @@ public function isHtml(TokenIterator $tokens): bool
380
382
return false ;
381
383
}
382
384
385
+ $ endTag = '</ ' . $ htmlTagName . '> ' ;
386
+ $ endTagSearchOffset = - strlen ($ endTag );
387
+
383
388
while (!$ tokens ->isCurrentTokenType (Lexer::TOKEN_END )) {
384
389
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
387
395
) {
388
396
return true ;
389
397
}
Original file line number Diff line number Diff line change @@ -1301,6 +1301,20 @@ public function provideReturnTagsData(): Iterator
1301
1301
]),
1302
1302
];
1303
1303
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
+
1304
1318
yield [
1305
1319
'invalid without type and description ' ,
1306
1320
'/** @return */ ' ,
Original file line number Diff line number Diff line change @@ -2166,6 +2166,11 @@ public function provideParseData(): array
2166
2166
false
2167
2167
)),
2168
2168
],
2169
+ [
2170
+ 'MongoCollection <p>Returns a collection object representing the new collection.</p> ' ,
2171
+ new IdentifierTypeNode ('MongoCollection ' ),
2172
+ Lexer::TOKEN_OPEN_ANGLE_BRACKET ,
2173
+ ],
2169
2174
];
2170
2175
}
2171
2176
You can’t perform that action at this time.
0 commit comments