forked from spiral/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rector.php
34 lines (27 loc) · 1.15 KB
/
rector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
use Rector\Core\Configuration\Option;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPromotedPropertyRector;
use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector;
use Rector\Php71\Rector\FuncCall\CountOnNullRector;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$parameters = $containerConfigurator->parameters();
$parameters->set(Option::PATHS, [
__DIR__ . '/src/*/src',
]);
$parameters->set(Option::PARALLEL, true);
$parameters->set(Option::SKIP, [
CountOnNullRector::class,
// for PHP 8
RemoveUnusedPromotedPropertyRector::class,
RemoveUnusedPrivateMethodRector::class => [
__DIR__ . '/src/Boot/src/Bootloader/ConfigurationBootloader.php',
],
]);
$containerConfigurator->import(LevelSetList::UP_TO_PHP_72);
$containerConfigurator->import(SetList::DEAD_CODE);
};