mirror of
https://github.com/symfony/recipes.git
synced 2026-03-23 23:32:10 +01:00
18 lines
282 B
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)
|
|
;
|