Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed May 20, 2023
1 parent 969e6fa commit 8864fd7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/PHPStan/Parallel/ParallelAnalyserIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public function testRun(string $command): void
'message' => 'Method ParallelAnalyserIntegrationTest\\Bar::doFoo() has no return type specified.',
'line' => 8,
'ignorable' => true,
'identifier' => 'missingType.return',
],
],
],
Expand All @@ -75,17 +76,20 @@ public function testRun(string $command): void
'message' => 'Method ParallelAnalyserIntegrationTest\\Foo::doFoo() has no return type specified.',
'line' => 8,
'ignorable' => true,
'identifier' => 'missingType.return',
],
[
'message' => 'Access to an undefined property ParallelAnalyserIntegrationTest\\Foo::$test.',
'line' => 10,
'ignorable' => true,
'identifier' => 'property.notFound',
'tip' => 'Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property',
],
[
'message' => 'Access to an undefined property ParallelAnalyserIntegrationTest\\Foo::$test.',
'line' => 15,
'ignorable' => true,
'identifier' => 'property.notFound',
'tip' => 'Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property',
],
],
Expand Down

0 comments on commit 8864fd7

Please sign in to comment.