config = array_merge($config, $base_config); } else // @codeCoverageIgnoreEnd { $this->config = $config_files; } } /** * Get a config value * * @param string $key * @return mixed */ public function get($key) { if (isset($this->config[$key])) { return $this->config[$key]; } return NULL; } /** * Set a config value * * @param string $key * @param mixed $value * @return Config */ public function set($key, $value) { $this->config[$key] = $value; return $this; } } // End of config.php