Kraken\Config\Config::get PHP Method

get() public method

public get ( $key = '', $default = null )
    public function get($key = '', $default = null)
    {
        return $key === '' ? $this->getAll() : ArraySupport::get($this->config, $key, $default);
    }