12 lines
243 B
Plaintext
Raw Normal View History

2018-09-12 23:22:17 +03:00
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('var')
->in(__DIR__);
2018-09-12 23:22:17 +03:00
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
])->setFinder($finder)
2018-09-12 23:22:17 +03:00
;