HippoPHP\Hippo\Config\Config::remove PHP Method

remove() public method

public remove ( string $key )
$key string
    public function remove($key)
    {
        try {
            $current =& $this->navigateToKey($key, false);
            $current = null;
        } catch (BadConfigKeyException $e) {
            // If we try to remove an empty node, don't error.
        }
    }