Phalcon\Db\Result\Serializable::fetch PHP Method

fetch() public method

Fetches a row in the resultset
public fetch ( ) : array | boolean
return array | boolean
    public function fetch()
    {
        if (!isset($this->data[$this->position])) {
            return false;
        }
        return $this->data[$this->position++];
    }