Completed
Push — master ( 9c7626...3df618 )
by Lars
02:36
created
src/voku/db/Result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
    * fetchObject
230 230
    *
231 231
    * @param string     $class
232
-   * @param null|array $params
232
+   * @param string $params
233 233
    * @param bool       $reset
234 234
    *
235 235
    * @return object|false false on error
Please login to merge, or discard this patch.
src/voku/db/DB.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
   /**
796 796
    * Escape
797 797
    *
798
-   * @param mixed $var boolean: convert into "integer"<br />
798
+   * @param string $var boolean: convert into "integer"<br />
799 799
    *                   int: convert into "integer"<br />
800 800
    *                   float: convert into "float" and replace "," with "."<br />
801 801
    *                   array: run escape() for every key => value<br />
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
    * @param bool  $html_entity_decode
805 805
    * @param bool  $array_to_string
806 806
    *
807
-   * @return array|bool|float|int|string
807
+   * @return string
808 808
    */
809 809
   public function escape($var = '', $stripe_non_utf8 = true, $html_entity_decode = true, $array_to_string = false)
810 810
   {
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
   /**
924 924
    * Returns the auto generated id used in the last query.
925 925
    *
926
-   * @return int|string
926
+   * @return integer
927 927
    */
928 928
   public function insert_id()
929 929
   {
Please login to merge, or discard this patch.