chore: fix rector configuration warnings
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
idevakk
2026-03-03 01:53:02 +05:30
parent 4e7f1587a3
commit ba8d5d027b

View File

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