Completed
Push — master ( 0b8b52...e40050 )
by Lars
02:26
created
src/voku/db/Prepare.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
    * @param mixed  $v34
171 171
    * @param mixed  $v35
172 172
    *
173
-   * @return mixed
173
+   * @return boolean
174 174
    */
175 175
   public function bind_param_debug($types, &$v1 = null, &$v2 = null, &$v3 = null, &$v4 = null, &$v5 = null, &$v6 = null, &$v7 = null, &$v8 = null, &$v9 = null, &$v10 = null, &$v11 = null, &$v12 = null, &$v13 = null, &$v14 = null, &$v15 = null, &$v16 = null, &$v17 = null, &$v18 = null, &$v19 = null, &$v20 = null, &$v21 = null, &$v22 = null, &$v23 = null, &$v24 = null, &$v25 = null, &$v26 = null, &$v27 = null, &$v28 = null, &$v29 = null, &$v30 = null, &$v31 = null, &$v32 = null, &$v33 = null, &$v34 = null, &$v35 = null)
176 176
   {
Please login to merge, or discard this patch.
src/voku/db/Helper.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
   /**
15 15
    * Check if "mysqlnd"-driver is used.
16 16
    *
17
-   * @return bool
17
+   * @return boolean|null
18 18
    */
19 19
   public static function isMysqlndIsUsed()
20 20
   {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
    *
151 151
    * @param DB $dbConnection
152 152
    *
153
-   * @return string
153
+   * @return integer|null
154 154
    */
155 155
   public static function get_mysql_client_version(DB $dbConnection = null)
156 156
   {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
    *
174 174
    * @param DB $dbConnection
175 175
    *
176
-   * @return string
176
+   * @return integer|null
177 177
    */
178 178
   public static function get_mysql_server_version(DB $dbConnection = null)
179 179
   {
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
@@ -595,7 +595,7 @@
 block discarded – undo
595 595
    *                              parameter)<br>
596 596
    *                              <strong>object</strong>: use a object and fill the the data into
597 597
    *                              </p>
598
-   * @param null|array    $params optional
598
+   * @param null|string    $params optional
599 599
    *                              <p>
600 600
    *                              An array of parameters to pass to the constructor, used if $class is a
601 601
    *                              string.
Please login to merge, or discard this patch.
src/voku/db/DB.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@
 block discarded – undo
249 249
    * @param string      $username
250 250
    * @param string      $password
251 251
    * @param string      $database
252
-   * @param int|string  $port             <p>default is (int)3306</p>
252
+   * @param integer  $port             <p>default is (int)3306</p>
253 253
    * @param string      $charset          <p>default is 'utf8' or 'utf8mb4' (if supported)</p>
254 254
    * @param bool|string $exit_on_error    <p>Throw a 'Exception' when a query failed, otherwise it will return 'false'.
255 255
    *                                      Use a empty string "" or false to disable it.</p>
Please login to merge, or discard this patch.
src/voku/db/ActiveRecord.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -816,7 +816,7 @@  discard block
 block discarded – undo
816 816
   /**
817 817
    * Helper function to build SQL with sql parts.
818 818
    *
819
-   * @param array $sqls <p>The SQL part will be build.</p>
819
+   * @param string[] $sqls <p>The SQL part will be build.</p>
820 820
    *
821 821
    * @return string
822 822
    */
@@ -1057,7 +1057,7 @@  discard block
 block discarded – undo
1057 1057
    * Magic function to SET values of the current object.
1058 1058
    *
1059 1059
    * @param mixed $var
1060
-   * @param mixed $val
1060
+   * @param ActiveRecord $val
1061 1061
    */
1062 1062
   public function __set($var, $val)
1063 1063
   {
Please login to merge, or discard this patch.