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 #215 from localheinz/feature/final-static-access
Browse files Browse the repository at this point in the history
Enhancement: Enable final_static_access fixer
  • Loading branch information
localheinz authored Nov 3, 2019
2 parents b7975ba + 732b41b commit 9cb8edf
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 @@ -104,7 +104,7 @@ final class Php71 extends AbstractRuleSet
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'final_static_access' => true,
'fopen_flag_order' => true,
'fopen_flags' => true,
'fully_qualified_strict_types' => 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 @@ -104,7 +104,7 @@ final class Php73 extends AbstractRuleSet
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'final_static_access' => true,
'fopen_flag_order' => true,
'fopen_flags' => true,
'fully_qualified_strict_types' => 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 @@ -110,7 +110,7 @@ final class Php71Test extends AbstractRuleSetTestCase
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'final_static_access' => true,
'fopen_flag_order' => true,
'fopen_flags' => true,
'fully_qualified_strict_types' => 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 @@ -110,7 +110,7 @@ final class Php73Test extends AbstractRuleSetTestCase
'final_class' => true,
'final_internal_class' => true,
'final_public_method_for_abstract_class' => true,
'final_static_access' => false,
'final_static_access' => true,
'fopen_flag_order' => true,
'fopen_flags' => true,
'fully_qualified_strict_types' => true,
Expand Down

0 comments on commit 9cb8edf

Please sign in to comment.