3declare(strict_types=1);
5use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
6use Rector\Config\RectorConfig;
7use Rector\Set\ValueObject\LevelSetList;
8use Rector\Set\ValueObject\SetList;
10return static function (RectorConfig $rectorConfig): void {
11 $rectorConfig->paths([
12 __DIR__ .
'/accountancy',
88 $rectorConfig->rule(InlineConstructorDefaultToPropertyRector::class);
93 SetList::CODE_QUALITY,
94 SetList::CODING_STYLE,
96 SetList::EARLY_RETURN,