We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbd3fd7 commit 7d1fec9Copy full SHA for 7d1fec9
tests/PHPStan/Parser/RichParserTest.php
@@ -193,7 +193,17 @@ public function dataLinesToIgnore(): iterable
193
PHP_EOL .
194
'/** @phpstan-ignore test */' . PHP_EOL,
195
[
196
- 3 => ['test'],
+ 4 => ['test'],
197
+ ],
198
+ ];
199
+
200
+ yield [
201
+ '<?php' . PHP_EOL .
202
+ PHP_EOL .
203
+ '/** @phpstan-ignore test */' . PHP_EOL .
204
+ 'doFoo();' . PHP_EOL,
205
+ [
206
207
],
208
];
209
0 commit comments