summaryrefslogtreecommitdiffstats
path: root/phpstan-baseline-by-php-version.php
blob: 4bd791e86655bcf2c7e0d1ba358b43f2ca953fa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

$includes = [];
if (PHP_VERSION_ID >= 80000) {
    $includes[] = __DIR__ . '/phpstan-baseline-8x.neon';
} else {
    $includes[] = __DIR__ . '/phpstan-baseline-7x.neon';
}

return [
    'includes' => $includes
];