1 | <?php |
||
22 | class UpdatePage extends BaseUpdatePage implements UpdatePageInterface |
||
23 | { |
||
24 | use ChecksCodeImmutability; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | protected function getCodeElement() |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function specifyPrice($price) |
||
41 | |||
42 | public function disableTracking() |
||
46 | |||
47 | public function enableTracking() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function isTracked() |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function getPricingConfigurationForChannelAndCurrencyCalculator(ChannelInterface $channel, CurrencyInterface $currency) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | protected function getDefinedElements() |
||
82 | } |
||
83 |