| 1234567891011121314151617181920212223242526 |
- <?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);
|