Neos\Flow\Persistence\Doctrine\QueryResult::offsetExists PHP Méthode

offsetExists() public méthode

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
Résultat boolean
    public function offsetExists($offset)
    {
        $this->initialize();
        return isset($this->rows[$offset]);
    }