Files
crm_ecosplay/.php-cs-fixer.dist.php

18 lines
282 B
PHP
Raw Normal View History

2026-04-01 15:42:52 +02:00
<?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)
;