Inpsyde\MultilingualPress\Common\Nonce\OriginalRequestContext::offsetGet PHP 메소드

offsetGet() 공개 메소드

Returns the value with the given name.
부터: 3.0.0
public offsetGet ( string $name ) : mixed
$name string The name of a value.
리턴 mixed The value with the given name.
    public function offsetGet($name)
    {
        if ($this->offsetExists($name)) {
            return $this->cache[$name];
        }
        throw ContextValueNotSetException::for_name($name, 'read');
    }