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

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

return ['includes' => $includes];