Skip to content

Commit 4e1bfac

Browse files
committed
Fix build
1 parent 2d364d7 commit 4e1bfac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Analyser/AnalyserIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ public function testBug9994(): void
12471247
$errors = $this->runAnalyse(__DIR__ . '/data/bug-9994.php');
12481248
$this->assertCount(2, $errors);
12491249
$this->assertSame('Negated boolean expression is always false.', $errors[0]->getMessage());
1250-
$this->assertSame('Parameter #2 $callback of function array_filter expects (callable(1|2|3|null): mixed)|null, false given.', $errors[1]->getMessage());
1250+
$this->assertSame('Parameter #2 $callback of function array_filter expects (callable(1|2|3|null): bool)|null, false given.', $errors[1]->getMessage());
12511251
}
12521252

12531253
public function testBug10049(): void

0 commit comments

Comments
 (0)