1 | <?php |
||
18 | trait TPriceAdjustmentContainer |
||
19 | { |
||
20 | /** @var IPriceAdjustmentIterable */ |
||
21 | protected $adjustments; |
||
22 | |||
23 | /** |
||
24 | * Get all adjustments within the container. |
||
25 | * @return IPriceAdjustmentIterable |
||
26 | */ |
||
27 | public function getAdjustments() |
||
31 | |||
32 | /** |
||
33 | * @param IPriceAdjustmentIterable |
||
34 | * @return self |
||
35 | */ |
||
36 | public function setAdjustments(IPriceAdjustmentIterable $adjustments) |
||
41 | } |
||
42 |