18 lines
368 B
PHP
18 lines
368 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Rector\Config\RectorConfig;
|
||
|
|
||
|
return RectorConfig::configure()
|
||
|
->withPaths([
|
||
|
__DIR__ . '/config',
|
||
|
__DIR__ . '/old',
|
||
|
__DIR__ . '/public',
|
||
|
__DIR__ . '/src',
|
||
|
__DIR__ . '/tests',
|
||
|
])
|
||
|
// uncomment to reach your current PHP version
|
||
|
// ->withPhpSets()
|
||
|
->withTypeCoverageLevel(0);
|