16 lines
434 B
PHP
16 lines
434 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([__DIR__ . '/web/app/themes/haiku-atelier-2024'])
|
|
->withPhpSets(php84: true)
|
|
->withTypeCoverageLevel(10)
|
|
->withTypeCoverageDocblockLevel(10)
|
|
->withDeadCodeLevel(10)
|
|
->withCodeQualityLevel(10)
|
|
->withPreparedSets(
|
|
carbon: true,
|
|
instanceOf: true,
|
|
privatization: true,
|
|
);
|