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