1 | <?php |
||
5 | class Result extends AbstractResult |
||
6 | { |
||
7 | /** |
||
8 | * @var mixed |
||
9 | */ |
||
10 | private $id; |
||
11 | |||
12 | /** |
||
13 | * @var mixed |
||
14 | */ |
||
15 | private $result; |
||
16 | |||
17 | /** |
||
18 | * RpcResult constructor. |
||
19 | * |
||
20 | * @param mixed $id |
||
21 | * @param mixed $result |
||
22 | */ |
||
23 | public function __construct($id, $result) |
||
28 | |||
29 | /** |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function getId() |
||
36 | |||
37 | /** |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function getResult() |
||
44 | } |
||
45 |