Skip to content

Commit 7d1fec9

Browse files
committed
Fix minor change
1 parent cbd3fd7 commit 7d1fec9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/PHPStan/Parser/RichParserTest.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,17 @@ public function dataLinesToIgnore(): iterable
193193
PHP_EOL .
194194
'/** @phpstan-ignore test */' . PHP_EOL,
195195
[
196-
3 => ['test'],
196+
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+
4 => ['test'],
197207
],
198208
];
199209

0 commit comments

Comments
 (0)