Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function confirm( |
||
42 | $validation, |
||
43 | Shipment $shipment, |
||
44 | ShipmentRequestLabelSpecification $labelSpec = null, |
||
45 | ShipmentRequestReceiptSpecification $receiptSpec = null |
||
46 | ) { |
||
47 | $this->upsShipping->confirm( |
||
48 | $validation, |
||
49 | $shipment, |
||
50 | $labelSpec, |
||
51 | $receiptSpec |
||
52 | ); |
||
53 | } |
||
54 | |||
91 |