mirror of
https://ghproxy.net/https://github.com/nlemoine/wp-cli-move.git
synced 2026-02-28 21:24:36 +08:00
17 lines
309 B
PHP
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 );
|