From a54040608601e75e82387bfa8d02b079280637f7 Mon Sep 17 00:00:00 2001 From: Elisha Witte Date: Wed, 19 Jul 2023 15:35:23 +0200 Subject: [PATCH] Remove deprecated rector rules --- src/rector.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/rector.php b/src/rector.php index 9c9d986..a62ed26 100644 --- a/src/rector.php +++ b/src/rector.php @@ -8,7 +8,6 @@ use Rector\CodeQuality\Rector\ClassMethod\InlineArrayReturnAssignRector; use Rector\CodeQuality\Rector\Expression\InlineIfToExplicitIfRector; use Rector\CodeQuality\Rector\Foreach_\ForeachToInArrayRector; -use Rector\CodeQuality\Rector\Foreach_\SimplifyForeachToArrayFilterRector; use Rector\CodeQuality\Rector\Foreach_\UnusedForeachValueToArrayKeysRector; use Rector\CodeQuality\Rector\FuncCall\CompactToVariablesRector; use Rector\CodeQuality\Rector\FuncCall\IsAWithStringWithThirdArgumentRector; @@ -44,7 +43,6 @@ use Rector\DeadCode\Rector\Foreach_\RemoveUnusedForeachKeyRector; use Rector\DeadCode\Rector\If_\RemoveDeadInstanceOfRector; use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector; -use Rector\DeadCode\Rector\StmtsAwareInterface\RemoveJustVariableAssignRector; use Rector\EarlyReturn\Rector\Foreach_\ChangeNestedForeachIfsToEarlyContinueRector; use Rector\EarlyReturn\Rector\If_\ChangeNestedIfsToEarlyReturnRector; use Rector\EarlyReturn\Rector\StmtsAwareInterface\ReturnEarlyIfVariableRector; @@ -80,7 +78,6 @@ SimplifyBoolIdenticalTrueRector::class, SimplifyConditionsRector::class, SimplifyDeMorganBinaryRector::class, - SimplifyForeachToArrayFilterRector::class, SimplifyIfElseToTernaryRector::class, SimplifyRegexPatternRector::class, SimplifyUselessVariableRector::class, @@ -100,7 +97,6 @@ RemoveUnusedPrivateMethodParameterRector::class, RemoveUnusedPrivateMethodRector::class, RemoveUnusedPrivatePropertyRector::class, - RemoveJustVariableAssignRector::class, RemoveUnusedPromotedPropertyRector::class, RemoveUnusedVariableAssignRector::class, ChangeNestedForeachIfsToEarlyContinueRector::class,