phpstan-ignore-by-php-version.neon.php 192 B

12345678910
  1. <?php declare(strict_types = 1);
  2. $includes = [];
  3. if (PHP_VERSION_ID >= 80200) {
  4. $includes[] = __DIR__ . '/phpstan-baseline-8.2.neon';
  5. }
  6. $config['includes'] = $includes;
  7. return $config;