HippoPHP\Hippo\Config\Config::set PHP Method

set() public method

public set ( string $key, mixed $value )
$key string
$value mixed
    public function set($key, $value)
    {
        $current =& $this->navigateToKey($key, true);
        $current = is_array($value) ? $this->_normalizeArray($value) : $value;
    }