Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class DeleteShipmentRequest extends Request implements RequestInterface |
||
8 | { |
||
9 | private $trackingNumbers = []; |
||
10 | |||
11 | public function __construct(Authentication $authentication, array $trackingNumbers) |
||
12 | { |
||
13 | parent::__construct($authentication); |
||
14 | |||
15 | $this->trackingNumbers = $trackingNumbers; |
||
16 | } |
||
17 | |||
18 | public function toArray(): array |
||
23 | ); |
||
24 | } |
||
25 | |||
26 | public function getTrackingNumbers(): string |
||
29 | } |
||
30 | } |
||
31 |