Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
20 | class RpcResultArray extends RpcResultAbstract |
||
21 | { |
||
22 | /** |
||
23 | * RpcResultArray constructor. |
||
24 | * |
||
25 | * @param mixed[] $result |
||
26 | */ |
||
27 | public function __construct(array $result) |
||
28 | { |
||
29 | $this->result = $result; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @return mixed[] |
||
34 | */ |
||
35 | public function getResult(): array |
||
38 | } |
||
39 | } |
||
40 |