11 lines
251 B
PHP
11 lines
251 B
PHP
<?php
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([__DIR__ . '/src'])
|
|
->withPhpSets()
|
|
->withPreparedSets(false, true)
|
|
->withAttributesSets(true, true)
|
|
->withImportNames(false, false, true, true);
|