diff --git a/rector.php b/rector.php index 82f0630..95ce2c6 100644 --- a/rector.php +++ b/rector.php @@ -3,7 +3,6 @@ declare(strict_types = 1); use Rector\Config\RectorConfig; -use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector; return RectorConfig::configure() ->withPaths([ @@ -12,15 +11,11 @@ return RectorConfig::configure() __DIR__ . '/config', __DIR__ . '/tests', ]) - ->withSkip([ - AddOverrideAttributeToOverriddenMethodsRector::class, - ]) ->withPreparedSets( deadCode: true, codeQuality: true, typeDeclarations: true, privatization: true, earlyReturn: true, - strictBooleans: true, ) ->withPhpSets();