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

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

return [
    'includes' => $includes
];