Skip to content
This repository has been archived by the owner on Nov 26, 2019. It is now read-only.

Commit

Permalink
Merge pull request #214 from localheinz/feature/final-public-method-f…
Browse files Browse the repository at this point in the history
…or-abstract-class

Enhancement: Enable final_public_method_for_abstract_class fixer
  • Loading branch information
localheinz authored Nov 3, 2019
2 parents 223f6b1 + b39eba6 commit b7975ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/RuleSet/Php71.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ final class Php71 extends AbstractRuleSet
'explicit_string_variable' => true,
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => false,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'fopen_flag_order' => true,
'fopen_flags' => true,
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/Php73.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ final class Php73 extends AbstractRuleSet
'explicit_string_variable' => true,
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => false,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'fopen_flag_order' => true,
'fopen_flags' => true,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/Php71Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ final class Php71Test extends AbstractRuleSetTestCase
'explicit_string_variable' => true,
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => false,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'fopen_flag_order' => true,
'fopen_flags' => true,
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/Php73Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ final class Php73Test extends AbstractRuleSetTestCase
'explicit_string_variable' => true,
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => false,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'fopen_flag_order' => true,
'fopen_flags' => true,
Expand Down

0 comments on commit b7975ba

Please sign in to comment.