From ba8d5d027bfe10bfe61913babf7b7f7cc2892556 Mon Sep 17 00:00:00 2001 From: idevakk <219866223+idevakk@users.noreply.github.com> Date: Tue, 3 Mar 2026 01:53:02 +0530 Subject: [PATCH] chore: fix rector configuration warnings --- rector.php | 5 ----- 1 file changed, 5 deletions(-) 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();