Pop\Config::get PHP Method

get() public method

Get method to return the value of config[$name].
public get ( string $name ) : mixed
$name string
return mixed
    public function get($name)
    {
        $value = null;
        if (array_key_exists($name, $this->config)) {
            $value = $this->config[$name];
        }
        return $value;
    }