Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class CancelShipmentRequest |
||
24 | { |
||
25 | private string $shipmentId; |
||
26 | |||
27 | private string $comment; |
||
28 | |||
29 | public function __construct(string $shipmentId, string $comment) |
||
30 | { |
||
31 | $this->shipmentId = $shipmentId; |
||
32 | $this->comment = $comment; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getShipmentId(): string |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getComment(): string |
||
49 | } |
||
50 | } |