Gush\Config::merge PHP Method

merge() public method

Merges new config values with the existing ones (overriding).
public merge ( array $config, $type )
$config array
    public function merge(array $config, $type)
    {
        foreach ($config as $key => $val) {
            $this->set($key, $val, $type);
        }
    }