| 1 | <?php |
||
| 13 | class Capability implements CommandInterface { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $threemaId; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $threemaId |
||
| 21 | */ |
||
| 22 | public function __construct($threemaId) { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | public function getParams() { |
||
| 32 | |||
| 33 | public function getPath() { |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param int $httpCode |
||
| 39 | * @param object $res |
||
| 40 | * @return CapabilityResult |
||
| 41 | */ |
||
| 42 | public function parseResult($httpCode, $res){ |
||
| 45 | } |
||
| 46 |