1 | <?php |
||
10 | final class ShipmentViewFactory implements ShipmentViewFactoryInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var ShippingMethodViewFactoryInterface |
||
14 | */ |
||
15 | private $shippingMethodViewFactory; |
||
16 | |||
17 | /** |
||
18 | * @param ShippingMethodViewFactoryInterface $shippingMethodViewFactory |
||
19 | */ |
||
20 | public function __construct(ShippingMethodViewFactoryInterface $shippingMethodViewFactory) |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function create(ShipmentInterface $shipment, $locale) |
||
37 | } |
||
38 |