Files
categoryChecker/rector.php
2024-02-16 17:02:41 -06:00

10 lines
303 B
PHP

<?php
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([__DIR__ . '/src'])
->withPhpSets()
->withPreparedSets(codeQuality: true)
->withAttributesSets(symfony: true, doctrine: true)
->withImportNames(importShortClasses: false, removeUnusedImports: true);