Skip to content

Commit

Permalink
Switched ordering of properties/methods to be by visibility before mo…
Browse files Browse the repository at this point in the history
…difier (#111)

* Switched ordering to be by visibility regardless of modifiers

* Ran linter
  • Loading branch information
davidbyoung committed Jan 23, 2021
1 parent 970adfb commit f4bc3c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .php_cs.dist
Expand Up @@ -42,22 +42,22 @@ return (new PhpCsFixer\Config())
'constant_protected',
'constant_private',
'property_public_static',
'property_protected_static',
'property_private_static',
'property_public',
'property_protected_static',
'property_protected',
'property_private_static',
'property_private',
'construct',
'destruct',
'magic',
'phpunit',
'method_public_abstract',
'method_protected_abstract',
'method_public_static',
'method_protected_static',
'method_private_static',
'method_public_abstract',
'method_public',
'method_protected_static',
'method_protected_abstract',
'method_protected',
'method_private_static',
'method_private'
]
],
Expand Down

0 comments on commit f4bc3c4

Please sign in to comment.