Skip to content

Commit 28dff17

Browse files
staabmondrejmirtes
authored andcommitted
Fix PHP_VERSION_ID comparison in test
1 parent 27e0f91 commit 28dff17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Rules/Arrays/NonexistentOffsetInArrayDimFetchRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ public function testBug8068(): void
687687

688688
public function testBug6243(): void
689689
{
690-
if (PHP_VERSION_ID < 704000) {
690+
if (PHP_VERSION_ID < 70400) {
691691
$this->markTestSkipped('Test requires PHP 7.4.');
692692
}
693693

0 commit comments

Comments
 (0)