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', ])