Neos\Flow\Mvc\Controller\Arguments::offsetExists PHP Méthode

offsetExists() public méthode

Returns whether the requested index exists
public offsetExists ( mixed $offset ) : boolean
$offset mixed Offset
Résultat boolean
    public function offsetExists($offset)
    {
        $translatedOffset = $this->validateArgumentExistence($offset);
        return parent::offsetExists($translatedOffset);
    }