2018-02-19 00:18:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return PhpCsFixer\Config::create()
|
|
|
|
->setRiskyAllowed(true)
|
|
|
|
->setRules([
|
|
|
|
'array_syntax' => [
|
|
|
|
'syntax' => 'short'
|
|
|
|
],
|
|
|
|
'combine_consecutive_unsets' => true,
|
|
|
|
'heredoc_to_nowdoc' => true,
|
|
|
|
'no_extra_consecutive_blank_lines' => [
|
|
|
|
'break',
|
|
|
|
'continue',
|
|
|
|
'extra',
|
|
|
|
'return',
|
|
|
|
'throw',
|
|
|
|
'use',
|
|
|
|
'parenthesis_brace_block',
|
|
|
|
'square_brace_block',
|
|
|
|
'curly_brace_block'
|
|
|
|
],
|
|
|
|
'no_unreachable_default_argument_value' => true,
|
|
|
|
'no_useless_else' => true,
|
|
|
|
'no_useless_return' => true,
|
|
|
|
'ordered_class_elements' => true,
|
|
|
|
'ordered_imports' => true,
|
|
|
|
'php_unit_strict' => true,
|
|
|
|
'phpdoc_order' => true,
|
|
|
|
// 'psr4' => true,
|
|
|
|
'strict_comparison' => true,
|
|
|
|
'strict_param' => true,
|
|
|
|
'concat_space' => [
|
|
|
|
'spacing' => 'one'
|
|
|
|
],
|
|
|
|
])
|
|
|
|
->setFinder(
|
|
|
|
PhpCsFixer\Finder::create()
|
|
|
|
->exclude([
|
|
|
|
'vendor',
|
|
|
|
'var',
|
2018-04-19 09:00:52 +02:00
|
|
|
'web',
|
|
|
|
'tpl_c',
|
2018-02-19 00:18:43 +01:00
|
|
|
])
|
|
|
|
->in(__DIR__)
|
|
|
|
)
|
|
|
|
;
|