1 | <?php |
||
3 | class Provider extends Singleton |
||
4 | { |
||
5 | /** The methods loaded by the provider */ |
||
6 | protected $methods; |
||
7 | |||
8 | /** |
||
9 | * Get the method object corresponding to the name |
||
10 | * |
||
11 | * @param string $methodName The class name of the method to get the instance for |
||
12 | * |
||
13 | * @return boolean|stdClass The specified method class instance or false if it is not loaded |
||
14 | */ |
||
15 | public function getMethodByName($methodName) |
||
27 | } |
||
28 | /* vim: set tabstop=4 shiftwidth=4 expandtab: */ |
||
29 |