Neos\Flow\Mvc\Controller\Arguments::offsetGet PHP Method

offsetGet() public method

Returns the value at the specified index
public offsetGet ( mixed $offset ) : Argument
$offset mixed Offset
return Argument The requested argument object
    public function offsetGet($offset)
    {
        $translatedOffset = $this->validateArgumentExistence($offset);
        if ($translatedOffset === false) {
            throw new \Neos\Flow\Mvc\Exception\NoSuchArgumentException('An argument "' . $offset . '" does not exist.', 1216909923);
        }
        return parent::offsetGet($translatedOffset);
    }