Total Complexity | 9 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class QueryPendingResult extends AbstractResult |
||
11 | { |
||
12 | 2 | public function __construct(stdClass $data) |
|
15 | 2 | } |
|
16 | |||
17 | 2 | public function status(): string |
|
20 | } |
||
21 | |||
22 | 1 | public function xml(): string |
|
23 | { |
||
24 | 1 | return $this->get('xml'); |
|
25 | } |
||
26 | |||
27 | 1 | public function uuid(): string |
|
28 | { |
||
29 | 1 | return $this->get('uuid'); |
|
30 | } |
||
31 | |||
32 | 1 | public function uuidStatus(): string |
|
33 | { |
||
34 | 1 | return $this->get('uuid_status'); |
|
35 | } |
||
36 | |||
37 | 1 | public function nextAttempt(): string |
|
38 | { |
||
39 | 1 | return $this->get('next_attempt'); |
|
40 | } |
||
41 | |||
42 | 1 | public function attempts(): string |
|
43 | { |
||
44 | 1 | return $this->get('attempts'); |
|
45 | } |
||
46 | |||
47 | 1 | public function error(): string |
|
48 | { |
||
49 | 1 | return $this->get('error'); |
|
50 | } |
||
51 | |||
52 | 1 | public function date(): string |
|
55 | } |
||
56 | } |
||
57 |