Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class OrderDeliveryStatusCommitResponse implements ResponseInterface |
||
16 | { |
||
17 | /** |
||
18 | * @JMS\XmlValue() |
||
19 | * @JMS\Type("string") |
||
20 | */ |
||
21 | private ?string $status = null; |
||
22 | |||
23 | /** |
||
24 | * @JMS\XmlAttribute() |
||
25 | * @JMS\Type("int") |
||
26 | */ |
||
27 | private ?int $error = null; |
||
28 | |||
29 | /** |
||
30 | * @return string|null |
||
31 | */ |
||
32 | 1 | public function getStatus(): ?string |
|
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return int|null |
||
39 | */ |
||
40 | 1 | public function getError(): ?int |
|
45 |