mirror of
https://github.com/Seldaek/monolog.git
synced 2025-01-16 20:28:23 +01:00
11 lines
192 B
PHP
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;
|