icinga-php-library/vendor/ipl/web/phpstan-baseline-by-php-version.php
2025-07-14 11:54:17 +00:00

13 lines
219 B
PHP

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