Dibi\Result::fetch PHP Метод

fetch() закрытый публичный Метод

and moves the internal cursor to the next position
final public fetch ( ) : Row | FALSE
Результат Row | FALSE array on success, FALSE if no next record
    public final function fetch()
    {
        $row = $this->getResultDriver()->fetch(TRUE);
        if (!is_array($row)) {
            return FALSE;
        }
        $this->fetched = TRUE;
        $this->normalize($row);
        if ($this->rowFactory) {
            return call_user_func($this->rowFactory, $row);
        } elseif ($this->rowClass) {
            $row = new $this->rowClass($row);
        }
        return $row;
    }