infinito/application/.php_cs.dist

12 lines
243 B
Plaintext
Raw Normal View History

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