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