16 lines
290 B
PHP
16 lines
290 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/src',
|
|
__DIR__ . '/tests',
|
|
])
|
|
->withPhpSets()
|
|
->withTypeCoverageLevel(50)
|
|
->withDeadCodeLevel(48)
|
|
->withCodeQualityLevel(71);
|