_values)) { throw new \FuelException('INSERT INTO ... SELECT statements cannot be combined with INSERT INTO ... VALUES'); } // Get all of the passed values $values = func_get_args(); //OVERRIDE if (isset($this->_values) && !empty($this->_values)) { $this->_values[0] = array_merge($this->_values[0], $values[0]); } else { $this->_values = array_merge($this->_values, $values); } return $this; } }