phpcsfixer

This commit is contained in:
hakutaku
2025-09-23 17:46:56 +03:00
parent 8620dbff27
commit d58211507d
12 changed files with 1220 additions and 103 deletions

13
.php-cs-fixer.dist.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
;
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;