Skip to content

Instantly share code, notes, and snippets.

@vishwac09
Last active February 17, 2022 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vishwac09/9a2cdd523961af92822c8976886e2145 to your computer and use it in GitHub Desktop.
Save vishwac09/9a2cdd523961af92822c8976886e2145 to your computer and use it in GitHub Desktop.
CodingStandard - OrderedClassMethod
<?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