Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | class DestinationServicesRequest extends CreateShipmentRequest |
||
31 | { |
||
32 | use ToArray; |
||
33 | |||
34 | private ?\DateTime $date = null; |
||
|
|||
35 | |||
36 | private ?CalculationSender $sender = null; |
||
37 | |||
38 | private CalculationRecipient $recipient; |
||
39 | |||
40 | 1 | public function __construct(CalculationRecipient $recipient) |
|
41 | { |
||
42 | 1 | $this->recipient = $recipient; |
|
43 | } |
||
44 | |||
45 | public function getRecipient(): ShipmentRecipient |
||
48 | } |
||
49 | } |
||
50 |