Skip to content

Commit 27bc69b

Browse files
committed
Fix
1 parent a4eddb9 commit 27bc69b

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
@@ -202,7 +202,7 @@ public function testCollectWarnings(): void
202202
'Declaration of DeclarationWarning\Bar::doFoo(int $i): void should be compatible with DeclarationWarning\Foo::doFoo(): void',
203203
'Parameter #1 $i of method DeclarationWarning\Bar::doFoo() is not optional.',
204204
];
205-
if (PHP_VERSION_ID < 80000) {
205+
if (PHP_VERSION_ID < 70400) {
206206
$messages = array_reverse($messages);
207207
}
208208
foreach ($messages as $i => $message) {

0 commit comments

Comments
 (0)