10 lines
303 B
PHP
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); |