Skip to content

Commit

Permalink
Fix rector config
Browse files Browse the repository at this point in the history
  • Loading branch information
chiiya committed Jun 6, 2024
1 parent 81993e5 commit cc0c2f5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
use Rector\CodeQuality\Rector\Ternary\UnnecessaryTernaryExpressionRector;
use Rector\CodingStyle\Rector\ClassMethod\MakeInheritedMethodVisibilitySameAsParentRector;
use Rector\CodingStyle\Rector\FuncCall\CallUserFuncArrayToVariadicRector;
use Rector\CodingStyle\Rector\Switch_\BinarySwitchToIfElseRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\Assign\RemoveUnusedVariableAssignRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodParameterRector;
Expand All @@ -55,7 +54,6 @@
use Rector\Php80\Rector\Identical\StrStartsWithRector;
use Rector\Php80\Rector\NotIdentical\StrContainsRector;
use Rector\Php80\Rector\Switch_\ChangeSwitchToMatchRector;
use Rector\Php81\Rector\ClassConst\FinalizePublicClassConstantRector;
use Rector\Php81\Rector\ClassMethod\NewInInitializerRector;

return static function (RectorConfig $config): void {
Expand Down Expand Up @@ -86,7 +84,6 @@
UnnecessaryTernaryExpressionRector::class,
TernaryEmptyArrayArrayDimFetchToCoalesceRector::class,
UnusedForeachValueToArrayKeysRector::class,
BinarySwitchToIfElseRector::class,
CallUserFuncArrayToVariadicRector::class,
MakeInheritedMethodVisibilitySameAsParentRector::class,
RemoveDeadContinueRector::class,
Expand All @@ -109,7 +106,6 @@
StrContainsRector::class,
StrEndsWithRector::class,
StrStartsWithRector::class,
FinalizePublicClassConstantRector::class,
NewInInitializerRector::class,
InlineArrayReturnAssignRector::class,
CleanupUnneededNullsafeOperatorRector::class,
Expand Down

0 comments on commit cc0c2f5

Please sign in to comment.