digitemp-rrdgraph/.php_cs

16 lines
328 B
Plaintext
Raw Normal View History

2020-06-09 16:02:25 +09:00
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__)
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'@DoctrineAnnotation' => true,
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder)
;