Completed
Pull Request — development (#738)
by Kai
05:25
created
htdocs/lib/clicompatbase.inc.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 /**
400 400
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
401 401
  * @param $value
402
- * @return false|string
402
+ * @return string
403 403
  */
404 404
 function sql_escape($value)
405 405
 {
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 /**
414 414
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
415 415
  * @param $value
416
- * @return false|mixed|string
416
+ * @return string
417 417
  */
418 418
 function sql_escape_backtick($value)
419 419
 {
Please login to merge, or discard this patch.
htdocs/lib2/db.inc.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 /**
85 85
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
86 86
  * @param $sql
87
- * @return resource
87
+ * @return mysqli_result
88 88
  */
89 89
 function sql($sql)
90 90
 {
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 /**
115 115
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
116 116
  * @param $sql
117
- * @return resource
117
+ * @return mysqli_result
118 118
  */
119 119
 function sql_slave($sql)
120 120
 {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
145 145
  * @param $dblink
146 146
  * @param $sql
147
- * @return resource
147
+ * @return mysqli_result
148 148
  */
149 149
 function sql_internal($dblink, $sql)
150 150
 {
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
 /**
343 343
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
344 344
  * @param string $sql
345
- * @return resource
345
+ * @return mysqli_result
346 346
  */
347 347
 function sqlf($sql)
348 348
 {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 /**
361 361
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
362 362
  * @param string $sql
363
- * @return resource
363
+ * @return mysqli_result
364 364
  */
365 365
 function sqlf_slave($sql)
366 366
 {
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
 /**
379 379
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
380 380
  * @param string $sql
381
- * @return resource
381
+ * @return mysqli_result
382 382
  */
383 383
 function sqll($sql)
384 384
 {
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
 
1229 1229
 /**
1230 1230
  * @deprecated use DBAL Conenction instead. See adminreports.php for an example implementation
1231
- * @param $f
1231
+ * @param resource $f
1232 1232
  * @param resource $rs
1233 1233
  * @param $table
1234 1234
  * @param bool $truncate
Please login to merge, or discard this patch.