You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
composer/phpstan/ignore-by-php-version.neon.php

13 lines
349 B
PHP

<?php declare(strict_types = 1);
// more inspiration at https://github.com/phpstan/phpstan-src/blob/master/build/ignore-by-php-version.neon.php
$includes = [];
if (PHP_VERSION_ID >= 80000) {
$includes[] = __DIR__ . '/baseline-8.1.neon';
}
$config['includes'] = $includes;
$config['parameters']['phpVersion'] = PHP_VERSION_ID;
return $config;