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