GraphAware\Reco4PHP\Config\KeyValueConfig::get PHP Method

get() public method

public get ( $key ) : mixed
$key
return mixed
    public function get($key)
    {
        return array_key_exists($key, $this->values) ? $this->values[$key] : null;
    }