Files
crm_ecosplay/.php-cs-fixer.dist.php
Serreau Jovann 686de99909 init
2026-04-01 15:42:52 +02:00

18 lines
282 B
PHP

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