1 | <?php |
||
20 | class IndexPage extends BaseIndexPage implements IndexPageInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function isCurrencyDisabled(CurrencyInterface $currency) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function isCurrencyEnabled(CurrencyInterface $currency) |
||
37 | |||
38 | /** |
||
39 | * @param CurrencyInterface $currency |
||
40 | * @param string $status |
||
41 | * |
||
42 | * @return bool |
||
43 | * |
||
44 | * @throws \InvalidArgumentException |
||
45 | */ |
||
46 | private function checkCurrencyStatus(CurrencyInterface $currency, $status) |
||
56 | } |
||
57 |