15 lines
334 B
PHP
15 lines
334 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Lubiana\CodeQuality\LubiSetList;
|
||
|
use Rector\Config\RectorConfig;
|
||
|
|
||
|
return static function (RectorConfig $c): void {
|
||
|
$c->paths([__DIR__ . '/src', __DIR__ . '/config', __DIR__ . '/ecs.php', __DIR__ . '/rector.php']);
|
||
|
|
||
|
$c->importNames();
|
||
|
|
||
|
$c->sets([
|
||
|
LubiSetList::RECTOR,
|
||
|
]);
|
||
|
};
|