Completed
Pull Request — master (#6471)
by Tony
04:30
created
includes/dbFacile.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,6 +156,9 @@  discard block
 block discarded – undo
156 156
  * */
157 157
 
158 158
 
159
+/**
160
+ * @param string $table
161
+ */
159 162
 function dbBulkInsert($data, $table)
160 163
 {
161 164
     $time_start = microtime(true);
@@ -205,6 +208,10 @@  discard block
 block discarded – undo
205 208
  * */
206 209
 
207 210
 
211
+/**
212
+ * @param string $table
213
+ * @param string $where
214
+ */
208 215
 function dbUpdate($data, $table, $where = null, $parameters = array())
209 216
 {
210 217
     global $fullSql, $database_link;
@@ -394,6 +401,9 @@  discard block
 block discarded – undo
394 401
  * */
395 402
 
396 403
 
404
+/**
405
+ * @param string|false $sql
406
+ */
397 407
 function dbFetchColumn($sql, $parameters = array(), $nocache = false)
398 408
 {
399 409
     $time_start = microtime(true);
@@ -565,7 +575,7 @@  discard block
 block discarded – undo
565 575
  * Generate a string of placeholders to pass to fill in a list
566 576
  * result will look like this: (?, ?, ?, ?)
567 577
  *
568
- * @param $count
578
+ * @param integer $count
569 579
  * @return string placholder list
570 580
  */
571 581
 function dbGenPlaceholders($count)
Please login to merge, or discard this patch.