1
0
Fork 0
composer/phpstan/ignore-by-php-version.neon.php

13 lines
349 B
PHP
Raw Permalink Normal View History

<?php declare(strict_types = 1);
// more inspiration at https://github.com/phpstan/phpstan-src/blob/master/build/ignore-by-php-version.neon.php
2022-02-24 12:21:22 +00:00
$includes = [];
if (PHP_VERSION_ID >= 80000) {
2024-07-06 21:35:00 +00:00
$includes[] = __DIR__ . '/baseline-8.3.neon';
}
2022-02-24 12:21:22 +00:00
$config['includes'] = $includes;
$config['parameters']['phpVersion'] = PHP_VERSION_ID;
return $config;