From 42660e07089f79294fc5c86197d4e6053fbcf725 Mon Sep 17 00:00:00 2001 From: SonataCI Date: Tue, 7 Apr 2026 09:40:37 +0000 Subject: [PATCH] DevKit updates --- rector.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rector.php b/rector.php index 3f21a4ed..3103926f 100644 --- a/rector.php +++ b/rector.php @@ -23,6 +23,7 @@ use Rector\Php81\Rector\Property\ReadOnlyPropertyRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\NarrowUnusedSetUpDefinedPropertyRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector; +use Rector\PHPUnit\CodeQuality\Rector\Class_\RemoveNeverUsedMockPropertyRector; use Rector\PHPUnit\Set\PHPUnitSetList; use Rector\Set\ValueObject\LevelSetList; @@ -46,5 +47,6 @@ NullToStrictStringFuncCallArgRector::class, PreferPHPUnitThisCallRector::class, NarrowUnusedSetUpDefinedPropertyRector::class, + RemoveNeverUsedMockPropertyRector::class, ]); };