Completed
Push — master ( 87c372...9db816 )
by Lars
01:48
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/Result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@
 block discarded – undo
340 340
    * Fetch as object.
341 341
    *
342 342
    * @param string     $class
343
-   * @param null|array $params
343
+   * @param string $params
344 344
    * @param bool       $reset
345 345
    *
346 346
    * @return object|false <p><strong>false</strong> on error</p>
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/DB.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
    * @param string         $username
229 229
    * @param string         $password
230 230
    * @param string         $database
231
-   * @param int|string     $port          <p>default is (int)3306</p>
231
+   * @param integer     $port          <p>default is (int)3306</p>
232 232
    * @param string         $charset       <p>default is 'utf8' or 'utf8mb4' (if supported)</p>
233 233
    * @param boolean|string $exit_on_error <p>Use a empty string "" or false to disable it.</p>
234 234
    * @param boolean|string $echo_on_error <p>Use a empty string "" or false to disable it.</p>
Please login to merge, or discard this patch.