chore: Remove InlineConstructorDefaultToPropertyRector rule

Since its already a part of the codeQuality ruleset.
This commit is contained in:
Patrick Hesselberg
2024-08-28 08:26:47 +02:00
committed by GitHub
parent 88197fe1d5
commit cc6f1b43f6

View File

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