_config = $config; } /** * Get config by key * * @param string $key * @return \Magento\Framework\Simplexml\Config|string|false */ public function getConfig($key = '') { if ('' === $key) { return $this->_config; } elseif (isset($this->_config->{$key})) { return $this->_config->{$key}; } else { return false; } } }