|
|
|
|
@ -1,6 +1,11 @@ |
|
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
return PhpCsFixer\Config::create() |
|
|
|
|
$finder = (new PhpCsFixer\Finder()) |
|
|
|
|
->in(__DIR__) |
|
|
|
|
->exclude(['vendor', 'var', 'web']) |
|
|
|
|
; |
|
|
|
|
|
|
|
|
|
return (new PhpCsFixer\Config()) |
|
|
|
|
->setUsingCache(true) |
|
|
|
|
->setRiskyAllowed(true) |
|
|
|
|
->setRules([ |
|
|
|
|
@ -9,7 +14,7 @@ return PhpCsFixer\Config::create() |
|
|
|
|
'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_extra_blank_lines' => ['tokens' => ['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, |
|
|
|
|
@ -22,9 +27,5 @@ return PhpCsFixer\Config::create() |
|
|
|
|
'strict_param' => true, |
|
|
|
|
'concat_space' => ['spacing' => 'one'], |
|
|
|
|
]) |
|
|
|
|
->setFinder( |
|
|
|
|
PhpCsFixer\Finder::create() |
|
|
|
|
->exclude(['vendor']) |
|
|
|
|
->in(__DIR__) |
|
|
|
|
) |
|
|
|
|
->setFinder($finder) |
|
|
|
|
; |