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