Files
archived-recipes/friendsofphp/php-cs-fixer/3.39/.php-cs-fixer.dist.php

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)
;