Skip to content

Commit

Permalink
Fix: Disable newly added fixers
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 7, 2022
1 parent 69d4914 commit 3742c5b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/RuleSet/Php74.php
Expand Up @@ -81,6 +81,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -342,6 +343,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php80.php
Expand Up @@ -81,6 +81,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -342,6 +343,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php81.php
Expand Up @@ -81,6 +81,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -342,6 +343,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php74Test.php
Expand Up @@ -87,6 +87,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -348,6 +349,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php80Test.php
Expand Up @@ -87,6 +87,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -348,6 +349,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php81Test.php
Expand Up @@ -87,6 +87,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'single_line' => false,
'space_before_parenthesis' => false,
],
'class_reference_name_casing' => false,
'clean_namespace' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
Expand Down Expand Up @@ -348,6 +349,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'no_unneeded_final_method' => [
'private_methods' => true,
],
'no_unneeded_import_alias' => false,
'no_unreachable_default_argument_value' => true,
'no_unset_cast' => true,
'no_unset_on_property' => true,
Expand Down

0 comments on commit 3742c5b

Please sign in to comment.