Doctrine\DBAL\Driver\Mysqli\MysqliStatement::_fetch PHP Method

_fetch() private method

private _fetch ( ) : boolean | array
return boolean | array
    private function _fetch()
    {
        $ret = $this->_stmt->fetch();
        if (true === $ret) {
            $values = array();
            foreach ($this->_rowBindedValues as $v) {
                $values[] = $v;
            }
            return $values;
        }
        return $ret;
    }