mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
FIx deprecation in no_extra_blank_lines
This commit is contained in:
parent
569eca0396
commit
5d736d874c
1 changed files with 11 additions and 9 deletions
|
@ -11,6 +11,7 @@ return PhpCsFixer\Config::create()
|
||||||
'combine_consecutive_unsets' => true,
|
'combine_consecutive_unsets' => true,
|
||||||
'heredoc_to_nowdoc' => true,
|
'heredoc_to_nowdoc' => true,
|
||||||
'no_extra_blank_lines' => [
|
'no_extra_blank_lines' => [
|
||||||
|
'tokens' => [
|
||||||
'break',
|
'break',
|
||||||
'continue',
|
'continue',
|
||||||
'extra',
|
'extra',
|
||||||
|
@ -21,6 +22,7 @@ return PhpCsFixer\Config::create()
|
||||||
'square_brace_block',
|
'square_brace_block',
|
||||||
'curly_brace_block'
|
'curly_brace_block'
|
||||||
],
|
],
|
||||||
|
],
|
||||||
'no_unreachable_default_argument_value' => true,
|
'no_unreachable_default_argument_value' => true,
|
||||||
'no_useless_else' => true,
|
'no_useless_else' => true,
|
||||||
'no_useless_return' => true,
|
'no_useless_return' => true,
|
||||||
|
|
Loading…
Reference in a new issue