mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-18 15:06:17 -05:00
12 lines
220 B
PHP
12 lines
220 B
PHP
<?php
|
|
|
|
$includes = [];
|
|
if (PHP_VERSION_ID >= 80000) {
|
|
$includes[] = __DIR__ . '/phpstan-baseline-8x.neon';
|
|
} else {
|
|
$includes[] = __DIR__ . '/phpstan-baseline-7x.neon';
|
|
}
|
|
|
|
return [
|
|
'includes' => $includes
|
|
];
|