File: phpstan-ignore-by-php-version.neon.php

package info (click to toggle)
php-monolog 3.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,456 kB
  • sloc: php: 16,836; makefile: 20
file content (10 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
<?php declare(strict_types = 1);

$includes = [];
if (PHP_VERSION_ID >= 80200) {
    $includes[] = __DIR__ . '/phpstan-baseline-8.2.neon';
}

$config['includes'] = $includes;

return $config;