haiku-atelier-2024/rector.php
2025-12-13 16:21:57 +01:00

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,
);