From cc6f1b43f6c6b65af472efb8ba1fde5d4b54e58e Mon Sep 17 00:00:00 2001 From: Patrick Hesselberg Date: Wed, 28 Aug 2024 08:26:47 +0200 Subject: [PATCH] chore: Remove `InlineConstructorDefaultToPropertyRector` rule Since its already a part of the codeQuality ruleset. --- rector.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rector.php b/rector.php index 99b8cdbf..a469dc41 100644 --- a/rector.php +++ b/rector.php @@ -2,16 +2,12 @@ declare(strict_types=1); -use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector; use Rector\Config\RectorConfig; return RectorConfig::configure() ->withPaths([ __DIR__.'/src', ]) - ->withRules([ - InlineConstructorDefaultToPropertyRector::class, - ]) ->withSkip([ __DIR__.'/src/Plugins/Parallel/Paratest/WrapperRunner.php', ])