Skip to content

Commit

Permalink
Fix: Disable newly added fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jul 22, 2022
1 parent 8557dc4 commit 574dfc2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'use' => 'echo',
],
'no_multiline_whitespace_around_double_arrow' => true,
'no_multiple_statements_per_line' => true,
'no_multiple_statements_per_line' => false,
'no_null_property_initialization' => true,
'no_php4_constructor' => false,
'no_short_bool_cast' => true,
Expand Down

0 comments on commit 574dfc2

Please sign in to comment.