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