Skip to content

Commit

Permalink
Fix: Configure method_argument_space fixer using all non-deprecated o…
Browse files Browse the repository at this point in the history
…ptions
  • Loading branch information
localheinz committed Dec 26, 2020
1 parent b027975 commit cb38428
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/RuleSet/Php71.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ final class Php71 extends AbstractRuleSet implements ExplicitRuleSet
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php73.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ final class Php73 extends AbstractRuleSet implements ExplicitRuleSet
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php71Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ final class Php71Test extends ExplicitRuleSetTestCase
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php73Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ final class Php73Test extends ExplicitRuleSetTestCase
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'magic_method_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => [
'after_heredoc' => false,
'keep_multiple_spaces_after_comma' => false,
'on_multiline' => 'ensure_fully_multiline',
],
Expand Down

0 comments on commit cb38428

Please sign in to comment.