|
8 | 8 | use Rector\Core\ValueObject\PhpVersion; |
9 | 9 | use Rector\DeadCode\Rector\Assign\RemoveUnusedVariableAssignRector; |
10 | 10 | use Rector\DeadCode\Rector\Expression\RemoveDeadStmtRector; |
11 | | -use Rector\PSR4\Rector\FileWithoutNamespace\NormalizeNamespaceByPSR4ComposerAutoloadRector; |
12 | 11 | use Rector\Set\ValueObject\SetList; |
13 | 12 | use Rector\TypeDeclaration\Rector\FunctionLike\ReturnTypeDeclarationRector; |
14 | 13 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; |
|
38 | 37 | $parameters->set(Option::SKIP, [ |
39 | 38 | CallableThisArrayToAnonymousFunctionRector::class, |
40 | 39 | UnSpreadOperatorRector::class, |
41 | | - RemoveUnusedVariableAssignRector::class => [ |
| 40 | + RemoveUnusedVariableAssignRector::class => [ |
42 | 41 | __DIR__ . '/src/Controller', |
43 | 42 | __DIR__ . '/src/Middleware/Routed/Preview', |
44 | 43 | ], |
45 | | - RemoveDeadStmtRector::class => [ |
| 44 | + RemoveDeadStmtRector::class => [ |
46 | 45 | __DIR__ . '/src/Controller', |
47 | 46 | __DIR__ . '/src/Middleware/Routed/Preview', |
48 | 47 | ], |
49 | | - ReturnTypeDeclarationRector::class => [ |
| 48 | + ReturnTypeDeclarationRector::class => [ |
50 | 49 | __DIR__ . '/src/Controller', |
51 | 50 | __DIR__ . '/spec/Fixture/NotSupportedContainer.php', |
52 | 51 | ], |
|
0 commit comments