From 6cbb1da5966b15c849a96c4c9923feae8ce5ec1b Mon Sep 17 00:00:00 2001 From: Jonathan Goode Date: Tue, 20 Feb 2024 16:31:30 +0000 Subject: [PATCH] Remove obsolete Rector and update import --- rector.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rector.php b/rector.php index 6e03192..444e14d 100644 --- a/rector.php +++ b/rector.php @@ -3,9 +3,9 @@ declare(strict_types=1); use Rector\Config\RectorConfig; -use Rector\Core\ValueObject\PhpVersion; use Rector\Php53\Rector\Ternary\TernaryToElvisRector; use Rector\Set\ValueObject\SetList; +use Rector\ValueObject\PhpVersion; // phpcs:disable Generic.Arrays.DisallowLongArraySyntax @@ -46,7 +46,6 @@ Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector::class, Rector\Php70\Rector\MethodCall\ThisCallOnStaticMethodToStaticCallRector::class, Rector\Php70\Rector\StaticCall\StaticCallOnNonStaticToInstanceCallRector::class, - Rector\Php71\Rector\FuncCall\CountOnNullRector::class, Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector::class, Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector::class, Rector\Transform\Rector\String_\StringToClassConstantRector::class,