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);
    }