18 lines
379 B
PHP
18 lines
379 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Rector\Config\RectorConfig;
|
||
|
use Rector\Renaming\Rector\Name\RenameClassRector;
|
||
|
|
||
|
return RectorConfig::configure()
|
||
|
->withPaths([
|
||
|
__DIR__.'/src',
|
||
|
__DIR__.'/tests',
|
||
|
])
|
||
|
->withPreparedSets(deadCode: true)
|
||
|
// uncomment to reach your current PHP version
|
||
|
->withPhpSets(php82: true)
|
||
|
->withTypeCoverageLevel(7)
|
||
|
;
|