Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function provide(ShippingMethodInterface $shippingMethod): ShipmentInterface |
||
31 | { |
||
32 | /** @var ShipmentInterface $shipment */ |
||
33 | $shipment = $this->shipmentFactory->createNew(); |
||
34 | $shipment->setState(Shipment::STATE_CART); |
||
35 | $shipment->setMethod($shippingMethod); |
||
36 | |||
37 | return $shipment; |
||
38 | } |
||
39 | } |
||
40 |