2022-10-12 17:46:05 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
2022-11-04 10:18:22 +00:00
|
|
|
use Lubiana\CodeQuality\LubiSetList;
|
2022-10-12 17:46:05 +00:00
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
|
2024-02-03 00:07:15 +00:00
|
|
|
return RectorConfig::configure()
|
|
|
|
->withPaths([
|
2022-10-12 17:46:05 +00:00
|
|
|
__DIR__ . '/src',
|
|
|
|
__DIR__ . '/config',
|
2024-02-03 00:07:15 +00:00
|
|
|
])
|
|
|
|
->withSets([LubiSetList::RECTOR])
|
|
|
|
->withRootFiles()
|
|
|
|
;
|