Gush\Config::merge PHP Méthode

merge() public méthode

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);
        }
    }