Skip to content

Commit eaebc58

Browse files
phpstan: Don't include phpstan-baseline-pre-8.2.neon if php < 8.2
1 parent b0ff808 commit eaebc58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

phpstan-baseline-by-php-version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
if (PHP_VERSION_ID >= 80200) {
1111
$includes[] = __DIR__ . '/phpstan-baseline-8.2+.neon';
12-
} else {
12+
} elseif (PHP_VERSION_ID >= 80000) {
1313
$includes[] = __DIR__ . '/phpstan-baseline-pre-8.2.neon';
1414
}
1515

0 commit comments

Comments
 (0)