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 Oct 13, 2022
1 parent b2a2ca9 commit 8a76e99
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => false,
'no_useless_return' => true,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => true,
'no_useless_return' => true,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => true,
'no_useless_return' => true,
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 @@ -386,6 +386,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => false,
'no_useless_return' => true,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => true,
'no_useless_return' => true,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'no_unset_cast' => true,
'no_unset_on_property' => true,
'no_unused_imports' => true,
'no_useless_concat_operator' => false,
'no_useless_else' => true,
'no_useless_nullsafe_operator' => true,
'no_useless_return' => true,
Expand Down

0 comments on commit 8a76e99

Please sign in to comment.