16 lines
290 B
PHP
16 lines
290 B
PHP
<?php
|
|
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->exclude('vendor')
|
|
->in(__DIR__)
|
|
;
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
return $config->setRules([
|
|
'@Symfony' => true,
|
|
'@DoctrineAnnotation' => true,
|
|
'array_indentation' => true,
|
|
])
|
|
->setFinder($finder)
|
|
;
|