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 07bf72b commit c4564f3Copy full SHA for c4564f3
tests/PHPStan/Analyser/AnalyserIntegrationTest.php
@@ -1167,6 +1167,7 @@ public function testBug8537(): void
1167
public function testBug7927(): void
1168
{
1169
$errors = $this->runAnalyse(__DIR__ . '/data/bug-7927.php');
1170
+ var_dump($errors);
1171
$this->assertCount(2, $errors);
1172
$this->assertSame('Enum case Bug7927\Test::One does not have a value but the enum is backed with the "int" type.', $errors[0]->getMessage());
1173
$this->assertSame('Enum case Bug7927\Test::Two does not have a value but the enum is backed with the "int" type.', $errors[1]->getMessage());
0 commit comments