Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class CancelOpenOrderResponse implements ResponseInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private $count; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $pending; |
||
22 | |||
23 | /** |
||
24 | * @param array $result |
||
25 | */ |
||
26 | 1 | public function manualMapping($result) |
|
30 | 1 | } |
|
31 | |||
32 | /** |
||
33 | * @return int |
||
34 | */ |
||
35 | 1 | public function getCount() |
|
38 | } |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | 1 | public function getPending() |
|
50 |