rector/templates/rector.php.dist
Tomas Votruba 691f25c420 Updated Rector to commit e17f878d5adb301fda0de8f9da2d94d898a363c3
e17f878d5a [Templates] Fix syntax error on templates/rector.php.dist (#5515)
2024-01-28 20:53:14 +00:00

20 lines
431 B
Plaintext

<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
return RectorConfig::configure()
->withPaths([
__PATHS__
])
->withRules([
InlineConstructorDefaultToPropertyRector::class,
])
->withSets([
// define sets of rules
// LevelSetList::UP_TO_PHP_XY
]);