27 lines
717 B
PHP
27 lines
717 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
|
|
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__.'/src',
|
|
__DIR__.'/tests',
|
|
])
|
|
->withSkip([
|
|
ReadOnlyPropertyRector::class,
|
|
EncapsedStringsToSprintfRector::class,
|
|
DisallowedEmptyRuleFixerRector::class,
|
|
])
|
|
->withPreparedSets(
|
|
deadCode: true,
|
|
codeQuality: true,
|
|
codingStyle: true,
|
|
typeDeclarations: true,
|
|
earlyReturn: true,
|
|
)->withPhpSets(php81: true);
|