Neos\Flow\Mvc\Controller\Arguments::offsetExists PHP Метод

offsetExists() публичный Метод

Returns whether the requested index exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed Offset
Результат boolean
    public function offsetExists($offset)
    {
        $translatedOffset = $this->validateArgumentExistence($offset);
        return parent::offsetExists($translatedOffset);
    }