16 lines
320 B
PHP
16 lines
320 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Lubiana\CodeQuality\LubiSetList;
|
||
|
use Rector\Config\RectorConfig;
|
||
|
|
||
|
return RectorConfig::configure()
|
||
|
->withPaths([
|
||
|
__DIR__ . '/config',
|
||
|
__DIR__ . '/public',
|
||
|
__DIR__ . '/src',
|
||
|
])
|
||
|
->withRootFiles()
|
||
|
->withSets([
|
||
|
LubiSetList::RECTOR,
|
||
|
]);
|