mirror of
https://github.com/Icinga/icinga-php-library.git
synced 2025-08-16 15:18:15 +02:00
13 lines
219 B
PHP
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
|
|
];
|