Neos\Flow\Persistence\Doctrine\QueryResult::offsetExists PHP 메소드

offsetExists() 공개 메소드

This method is needed to implement the \ArrayAccess interface, but it isn't very useful as the offset has to be an integer
public offsetExists ( mixed $offset ) : boolean
$offset mixed
리턴 boolean
    public function offsetExists($offset)
    {
        $this->initialize();
        return isset($this->rows[$offset]);
    }