Skip to content

Commit

Permalink
Fix: Use on_multiline instead of deprecated ensure_fully_multiline op…
Browse files Browse the repository at this point in the history
…tion for method_argument_space fixer
  • Loading branch information
localheinz authored and sebastianbergmann committed Dec 26, 2020
1 parent 29f420d commit d1a39d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .php_cs.dist
Expand Up @@ -90,7 +90,9 @@ return PhpCsFixer\Config::create()
'lowercase_static_reference' => true,
'magic_constant_casing' => true,
'magic_method_casing' => true,
'method_argument_space' => ['ensure_fully_multiline' => true],
'method_argument_space' => [
'on_multiline' => 'ensure_fully_multiline',
],
'modernize_types_casting' => true,
'multiline_comment_opening_closing' => true,
'multiline_whitespace_before_semicolons' => true,
Expand Down

0 comments on commit d1a39d1

Please sign in to comment.