Initial commit
This commit is contained in:
17
rector.php
Normal file
17
rector.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?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)
|
||||
;
|
Reference in New Issue
Block a user