chore: add php-cs-fixer config

This commit is contained in:
Björn Fromme
2025-06-24 09:14:08 +02:00
parent 7cb2037f76
commit 314e2910e2
+14
View File
@@ -0,0 +1,14 @@
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
;
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'@DoctrineAnnotation' => true,
])
->setFinder($finder)
;