Skip to content

Commit

Permalink
Fix: Use multiline_whitespace_before_semicolons fixer instead of depr…
Browse files Browse the repository at this point in the history
…ecated no_multiline_whitespace_before_semicolons
  • Loading branch information
localheinz committed Jan 10, 2018
1 parent f6e8f5e commit c507500
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ return PhpCsFixer\Config::create()
'increment_style' => true,
'is_null' => true,
'method_separation' => true,
'multiline_whitespace_before_semicolons' => [
'strategy' => 'no_multi_line',
],
'native_function_invocation' => true,
'new_with_braces' => true,
'no_alias_functions' => true,
Expand All @@ -99,7 +102,6 @@ return PhpCsFixer\Config::create()
],
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiline_whitespace_before_semicolons' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_superfluous_elseif' => true,
'no_trailing_comma_in_singleline_array' => true,
Expand Down

0 comments on commit c507500

Please sign in to comment.