1 | <?php |
||
10 | final class AdjustmentViewFactory implements AdjustmentViewFactoryInterface |
||
11 | { |
||
12 | /** @var PriceViewFactoryInterface */ |
||
13 | private $priceViewFactory; |
||
14 | |||
15 | public function __construct(PriceViewFactoryInterface $priceViewFactory) |
||
19 | |||
20 | public function create(AdjustmentInterface $adjustment, int $additionalAmount = 0): AdjustmentView |
||
29 | } |
||
30 |