| 1 | <?php |
||
| 5 | class Config |
||
| 6 | { |
||
| 7 | const CONFIG_KEY_MAGENTO_BOOTSTRAP_PATH = 'magento_bootstrap_path'; |
||
| 8 | const CONFIG_KEY_MAGENTO_CONFIGS = 'magento_configs'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $magentoBootstrapPath; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | private $magentoConfigs; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $config |
||
| 22 | */ |
||
| 23 | public function __construct(array $config) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getMagentoBootstrapPath() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | public function getRequiredMagentoConfig() |
||
| 44 | } |
||
| 45 |