1 | <?php |
||
20 | final class ShipmentProvider implements ShipmentProviderInterface |
||
21 | { |
||
22 | /** @var FactoryInterface */ |
||
23 | private $shipmentFactory; |
||
24 | |||
25 | public function __construct(FactoryInterface $shipmentFactory) |
||
29 | |||
30 | public function provide(ShippingMethodInterface $shippingMethod): ShipmentInterface |
||
39 | } |
||
40 |