1 | <?php |
||
18 | class ShippingWrapper |
||
19 | { |
||
20 | /** |
||
21 | * @var \Ups\Shipping |
||
22 | */ |
||
23 | private $upsShipping; |
||
24 | |||
25 | /** |
||
26 | * Shipping constructor. |
||
27 | * |
||
28 | * @param \Ups\Shipping $upsShipping |
||
29 | */ |
||
30 | public function __construct(\Ups\Shipping $upsShipping) |
||
34 | |||
35 | /** |
||
36 | * @param $validation |
||
37 | * @param Shipment $shipment |
||
38 | * @param ShipmentRequestLabelSpecification|null $labelSpec |
||
39 | * @param ShipmentRequestReceiptSpecification|null $receiptSpec |
||
40 | */ |
||
41 | public function confirm( |
||
54 | |||
55 | /** |
||
56 | * @param $shipmentDigest |
||
57 | */ |
||
58 | public function accept($shipmentDigest) |
||
62 | |||
63 | /** |
||
64 | * @param $shipmentData |
||
65 | */ |
||
66 | public function void($shipmentData) |
||
70 | |||
71 | /** |
||
72 | * @param $trackingData |
||
73 | * @param null $labelSpecification |
||
74 | * @param null $labelDelivery |
||
75 | * @param null $translate |
||
76 | */ |
||
77 | public function recoverLabel( |
||
90 | } |
||
91 |