File: phpstan-baseline-by-php-version.php

package info (click to toggle)
icingaweb2-module-x509 1%3A1.3.2-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,152 kB
  • sloc: php: 5,099; sql: 448; sh: 54; xml: 16; makefile: 15
file content (10 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (2)
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];