wp-cli-move/rector.php
2025-01-24 17:22:40 +01:00

17 lines
309 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths(
[
__DIR__ . '/src',
]
)
// uncomment to reach your current PHP version
->withPhpSets( php81: true )
->withTypeCoverageLevel( 0 )
->withDeadCodeLevel( 0 )
->withCodeQualityLevel( 0 );