1 | <?php |
||
13 | class FetchPublicKey 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 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getPath() { |
||
39 | |||
40 | /** |
||
41 | * @param int $httpCode |
||
42 | * @param object $res |
||
43 | * @return FetchPublicKeyResult |
||
44 | */ |
||
45 | public function parseResult($httpCode, $res){ |
||
48 | } |
||
49 |