mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(__DIR__)
|
|
->exclude('var')
|
|
;
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
])
|
|
->setFinder($finder)
|
|
;
|