1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-01-16 20:28:23 +01:00
php-monolog/phpstan-ignore-by-php-version.neon.php
2024-10-25 22:44:10 +02:00

11 lines
192 B
PHP

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