31 lines
909 B
PHP
31 lines
909 B
PHP
<?php
|
|
|
|
$finder = (new PhpCsFixer\Finder())
|
|
->in(__DIR__)
|
|
->exclude('var')
|
|
->exclude('vendor')
|
|
->exclude('migrations')
|
|
->notPath('bin/console')
|
|
->notPath('public/index.php')
|
|
;
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setRules([
|
|
'@Symfony' => true,
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
'ordered_imports' => ['sort_algorithm' => 'alpha'],
|
|
'no_unused_imports' => true,
|
|
'not_operator_with_successor_space' => true,
|
|
'trailing_comma_in_multiline' => true,
|
|
'phpdoc_scalar' => true,
|
|
'unary_operator_spaces' => true,
|
|
'binary_operator_spaces' => true,
|
|
'blank_line_before_statement' => [
|
|
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
|
|
],
|
|
'phpdoc_single_line_var_spacing' => true,
|
|
'phpdoc_var_without_name' => true,
|
|
])
|
|
->setFinder($finder)
|
|
;
|