Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class CancelShipmentRequest |
||
27 | { |
||
28 | use ToArray; |
||
|
|||
29 | |||
30 | private string $shipmentId; |
||
31 | |||
32 | private string $comment; |
||
33 | |||
34 | 1 | public function __construct(string $shipmentId, string $comment) |
|
35 | { |
||
36 | 1 | $this->shipmentId = $shipmentId; |
|
37 | 1 | $this->comment = $comment; |
|
38 | } |
||
39 | |||
40 | 1 | public function getShipmentId(): string |
|
43 | } |
||
44 | |||
45 | 1 | public function getComment(): string |
|
48 | } |
||
49 | } |
||
50 |