Files
test-apiplatform/api/.php_cs.dist
Pitchaya Boonsarngsuk c3d3dcbff7 init
2019-07-05 16:54:32 +01:00

15 lines
250 B
PHP

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