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