| 1 | <?php |
||
| 20 | final class AdjustmentProvider implements AdjustmentProviderInterface |
||
| 21 | { |
||
| 22 | /** @var AdjustmentFactoryInterface $adjustmentFactory */ |
||
| 23 | private $adjustmentFactory; |
||
| 24 | |||
| 25 | /** @var ChannelProviderInterface */ |
||
| 26 | private $channelProvider; |
||
| 27 | |||
| 28 | public function __construct(AdjustmentFactoryInterface $adjustmentFactory, ChannelProviderInterface $channelProvider) |
||
| 33 | |||
| 34 | public function provide(ShippingMethodInterface $shippingMethod): BaseAdjustmentInterface |
||
| 48 | } |
||
| 49 |