This commit is contained in:
gcch 2025-11-12 16:23:06 +01:00
commit e05e9553f5
1250 changed files with 23379 additions and 147730 deletions

16
rector.php Normal file
View file

@ -0,0 +1,16 @@
<?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,
);