| 1 | <?php |
||
| 14 | class MethodNameChecker implements CheckerInterface |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Checks to make sure the classes, methods, and functions are up to the standards |
||
| 19 | * and don't use bad practices |
||
| 20 | * |
||
| 21 | * @param Node $node |
||
| 22 | * @throws Exception |
||
| 23 | * @throws AnalysisException |
||
| 24 | */ |
||
| 25 | public function check(Node $node) |
||
| 29 | } |
||
| 30 |