diff --git a/lib/Driver.js b/lib/Driver.js index a348c09..6e1e520 100755 --- a/lib/Driver.js +++ b/lib/Driver.js @@ -1,4 +1,3 @@ -const array = require('locutus/php/array'); const Helpers = require('./Helpers'); /** @@ -164,10 +163,10 @@ const Driver = { * Creates a batch update sql statement * * @private - * @param {String} table - * @param {Array} data - * @param {String} updateKey - * @return {Array} array + * @param {String} table - The name of the table to update + * @param {Array} data - Array of objects containing the update data + * @param {String} updateKey - the field name to update based on + * @return {Array} - array of parameters passed to run the query */ updateBatch (table, data, updateKey) { let affectedRows = 0;