Skip to content

Commit 8864fd7

Browse files
committed
Fix build
1 parent 969e6fa commit 8864fd7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/PHPStan/Parallel/ParallelAnalyserIntegrationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public function testRun(string $command): void
6565
'message' => 'Method ParallelAnalyserIntegrationTest\\Bar::doFoo() has no return type specified.',
6666
'line' => 8,
6767
'ignorable' => true,
68+
'identifier' => 'missingType.return',
6869
],
6970
],
7071
],
@@ -75,17 +76,20 @@ public function testRun(string $command): void
7576
'message' => 'Method ParallelAnalyserIntegrationTest\\Foo::doFoo() has no return type specified.',
7677
'line' => 8,
7778
'ignorable' => true,
79+
'identifier' => 'missingType.return',
7880
],
7981
[
8082
'message' => 'Access to an undefined property ParallelAnalyserIntegrationTest\\Foo::$test.',
8183
'line' => 10,
8284
'ignorable' => true,
85+
'identifier' => 'property.notFound',
8386
'tip' => 'Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property',
8487
],
8588
[
8689
'message' => 'Access to an undefined property ParallelAnalyserIntegrationTest\\Foo::$test.',
8790
'line' => 15,
8891
'ignorable' => true,
92+
'identifier' => 'property.notFound',
8993
'tip' => 'Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property',
9094
],
9195
],

0 commit comments

Comments
 (0)