1 | <?php |
||
20 | class OrderShipmentProcessor implements OrderShipmentProcessorInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var FactoryInterface |
||
24 | */ |
||
25 | protected $shipmentFactory; |
||
26 | |||
27 | /** |
||
28 | * @param FactoryInterface $shipmentFactory |
||
29 | */ |
||
30 | public function __construct(FactoryInterface $shipmentFactory) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function processOrderShipment(OrderInterface $order) |
||
53 | } |
||
54 |