Phalcon\Db\Result\Serializable::fetch PHP Метод

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

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