Completed
Push — master ( aedff0...8477f9 )
by Lars
03:41
created
src/voku/db/DB.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
   /**
745 745
    * escape
746 746
    *
747
-   * @param array|float|int|string|boolean $var boolean: convert into "integer"<br />
747
+   * @param string $var boolean: convert into "integer"<br />
748 748
    *                                            int: convert into "integer"<br />
749 749
    *                                            float: convert into "float" and replace "," with "."<br />
750 750
    *                                            array: run escape() for every key => value<br />
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
    * @param bool                           $html_entity_decode
754 754
    * @param bool                           $array_to_string
755 755
    *
756
-   * @return array|bool|float|int|string
756
+   * @return string
757 757
    */
758 758
   public function escape($var = '', $stripe_non_utf8 = true, $html_entity_decode = true, $array_to_string = false)
759 759
   {
@@ -868,7 +868,7 @@  discard block
 block discarded – undo
868 868
   /**
869 869
    * insert_id
870 870
    *
871
-   * @return int|string
871
+   * @return integer
872 872
    */
873 873
   public function insert_id()
874 874
   {
Please login to merge, or discard this patch.
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.