From 1ca2225df24312f80333beb62d23a16495fddc5e Mon Sep 17 00:00:00 2001 From: SonataCI Date: Thu, 28 Sep 2023 12:12:20 +0000 Subject: [PATCH] DevKit updates --- rector.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rector.php b/rector.php index 74c4dcde..dd4380e3 100644 --- a/rector.php +++ b/rector.php @@ -21,6 +21,7 @@ use Rector\Php70\Rector\FunctionLike\ExceptionHandlerTypehintRector; use Rector\Php71\Rector\FuncCall\CountOnNullRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\AddSeeTestAnnotationRector; +use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector; use Rector\PHPUnit\Set\PHPUnitLevelSetList; use Rector\PHPUnit\Set\PHPUnitSetList; use Rector\Set\ValueObject\LevelSetList; @@ -43,5 +44,6 @@ CountOnNullRector::class, ExceptionHandlerTypehintRector::class, AddSeeTestAnnotationRector::class, + PreferPHPUnitThisCallRector::class, ]); };