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

Enhancement: Enable final_static_access fixer #215

Merged
merged 1 commit into from
Nov 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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