mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
15 lines
278 B
PHP
15 lines
278 B
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__)
|
|
->exclude('var')
|
|
;
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
])
|
|
->setFinder($finder)
|
|
->setCacheFile('.php-cs-fixer.cache') // forward compatibility with 3.x line
|
|
;
|