From 75f8d9fcc3c012d48d53cc085578b4c346229d3c Mon Sep 17 00:00:00 2001 From: Dan Hemberger Date: Tue, 24 Dec 2024 22:27:51 -0800 Subject: [PATCH] rector: add AddOverrideAttributeToOverriddenMethodsRector No changes, but is something we want to make sure is done in the future. Related to #1775. --- rector.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rector.php b/rector.php index 34f3d737e..7bbe30734 100644 --- a/rector.php +++ b/rector.php @@ -9,6 +9,7 @@ use Rector\Php80\Rector\FuncCall\ClassOnObjectRector; use Rector\Php81\Rector\Array_\FirstClassCallableRector; use Rector\Php81\Rector\Property\ReadOnlyPropertyRector; +use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector; use Rector\PHPUnit\Set\PHPUnitSetList; return RectorConfig::configure() @@ -18,6 +19,7 @@ ]) ->withImportNames(true, false) ->withRules([ + AddOverrideAttributeToOverriddenMethodsRector::class, ClassOnObjectRector::class, ClassPropertyAssignToConstructorPromotionRector::class, DirNameFileConstantToDirConstantRector::class,