| 1 | <?php |
||
| 12 | class MethodPluginManager { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Get the Method plugins. |
||
| 16 | * |
||
| 17 | * @return array |
||
| 18 | */ |
||
| 19 | 13 | public function getPlugins() { |
|
| 36 | |||
| 37 | /** |
||
| 38 | * Get a specific Method plugin. |
||
| 39 | * |
||
| 40 | * @param string $methodName |
||
| 41 | * The method name to call. |
||
| 42 | * @param array $params |
||
| 43 | * The params of the plugin. |
||
| 44 | * |
||
| 45 | * @return MethodPluginInterface|bool |
||
| 46 | */ |
||
| 47 | 13 | public function getPlugin($methodName, array $params = array()) { |
|
| 57 | |||
| 58 | } |
||
| 59 |