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

Commit

Permalink
Enhancement: Enable self_static_accessor fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Nov 3, 2019
1 parent da4c5b0 commit 382998a
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 @@ -291,7 +291,7 @@ final class Php71 extends AbstractRuleSet
'return_assignment' => true,
'return_type_declaration' => true,
'self_accessor' => true,
'self_static_accessor' => false,
'self_static_accessor' => true,
'semicolon_after_instruction' => true,
'set_type_to_cast' => true,
'short_scalar_cast' => 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 @@ -291,7 +291,7 @@ final class Php73 extends AbstractRuleSet
'return_assignment' => true,
'return_type_declaration' => true,
'self_accessor' => true,
'self_static_accessor' => false,
'self_static_accessor' => true,
'semicolon_after_instruction' => true,
'set_type_to_cast' => true,
'short_scalar_cast' => 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 @@ -297,7 +297,7 @@ final class Php71Test extends AbstractRuleSetTestCase
'return_assignment' => true,
'return_type_declaration' => true,
'self_accessor' => true,
'self_static_accessor' => false,
'self_static_accessor' => true,
'semicolon_after_instruction' => true,
'set_type_to_cast' => true,
'short_scalar_cast' => 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 @@ -297,7 +297,7 @@ final class Php73Test extends AbstractRuleSetTestCase
'return_assignment' => true,
'return_type_declaration' => true,
'self_accessor' => true,
'self_static_accessor' => false,
'self_static_accessor' => true,
'semicolon_after_instruction' => true,
'set_type_to_cast' => true,
'short_scalar_cast' => true,
Expand Down

0 comments on commit 382998a

Please sign in to comment.