Ergo\Config\ArrayConfig::get PHP Method

get() public method

* (non-phpdoc)
See also: Ergo\Config::get
public get ( $key )
    public function get($key)
    {
        if (!$this->exists($key)) {
            throw new MissingKeyException("No config key '{$key}'");
        }
        return $this->_data[$key];
    }