Last active
February 17, 2022 15:19
-
-
Save vishwac09/9a2cdd523961af92822c8976886e2145 to your computer and use it in GitHub Desktop.
CodingStandard - OrderedClassMethod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class showing member function defined in ascending order. | |
*/ | |
class OrdereClassMethods { | |
public function a() {} | |
public function aa() {} | |
public function ab() {} | |
public function ac() {} | |
public function b() {} | |
public function ba() {} | |
public function bb() {} | |
public function bc() {} | |
public function c() {} | |
public function ca() {} | |
public function cb() {} | |
public function cc() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment