initial commit
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
2024-02-16 15:44:24 -06:00
commit 19849f3752
8 changed files with 350 additions and 0 deletions

10
rector.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([__DIR__ . '/src'])
->withPhpSets()
->withPreparedSets(false, true)
->withAttributesSets(true, true)
->withImportNames(false, false, true, true);