Files
myep/.php-cs-fixer.dist.php
2026-03-16 11:59:09 +01:00

13 lines
234 B
PHP

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