updrade with rector

This commit is contained in:
2022-05-03 14:52:04 +02:00
parent d1e613ecc6
commit 6e30560cb9
135 changed files with 5609 additions and 4008 deletions

10
.php-cs-fixer.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(dirs: __DIR__ . '/src');
$config = new PhpCsFixer\Config();
return $config->setRules(rules: [
'@Symfony' => true,
'yoda_style' => false,
])
->setFinder(finder: $finder);