File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ private function generateRegexp(): string
146
146
147
147
self ::TOKEN_OPEN_PHPDOC => '/ \\* \\*(?= \\s) \\x20?+ ' ,
148
148
self ::TOKEN_CLOSE_PHPDOC => '\\*/ ' ,
149
- self ::TOKEN_PHPDOC_TAG => '@[a-z][a-z0-9- \\\\]*+ ' ,
149
+ self ::TOKEN_PHPDOC_TAG => '@(?:[a-z][a-z0-9- \\\\ ]+:)? [a-z][a-z0-9- \\\\]*+ ' ,
150
150
self ::TOKEN_PHPDOC_EOL => '\\r?+ \\n[ \\x09 \\x20]*+(?: \\*(?!/) \\x20?+)? ' ,
151
151
152
152
self ::TOKEN_FLOAT => '(?:-?[0-9]++ \\.[0-9]*+(?:e-?[0-9]++)?)|(?:-?[0-9]*+ \\.[0-9]++(?:e-?[0-9]++)?)|(?:-?[0-9]++e-?[0-9]++) ' ,
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ protected function setUp(): void
75
75
76
76
/**
77
77
* @dataProvider provideTagsWithNumbers
78
+ * @dataProvider provideSpecializedTags
78
79
* @dataProvider provideParamTagsData
79
80
* @dataProvider provideTypelessParamTagsData
80
81
* @dataProvider provideVarTagsData
@@ -4851,6 +4852,22 @@ public function provideParamOutTagsData(): Iterator
4851
4852
];
4852
4853
}
4853
4854
4855
+ public function provideSpecializedTags (): Iterator
4856
+ {
4857
+ yield [
4858
+ 'Ok specialized tag ' ,
4859
+ '/** @special:param this is special */ ' ,
4860
+ new PhpDocNode ([
4861
+ new PhpDocTagNode (
4862
+ '@special:param ' ,
4863
+ new GenericTagValueNode (
4864
+ 'this is special '
4865
+ )
4866
+ ),
4867
+ ]),
4868
+ ];
4869
+ }
4870
+
4854
4871
/**
4855
4872
* @dataProvider dataParseTagValue
4856
4873
* @param PhpDocNode $expectedPhpDocNode
You can’t perform that action at this time.
0 commit comments