Completed
Push — master ( 36d546...f13e43 )
by Daniel
02:22
created
source/MySQLiByDanielGP.php 2 patches
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,6 +171,8 @@  discard block
 block discarded – undo
171 171
     /**
172 172
      * Return various informations (from predefined list) from the MySQL server
173 173
      *
174
+     * @param string $returnChoice
175
+     * @param string $returnType
174 176
      * @return int|array
175 177
      */
176 178
     private function getMySQLlistMultiple($returnChoice, $returnType, $additionalFeatures = null)
@@ -312,7 +314,7 @@  discard block
 block discarded – undo
312 314
      *
313 315
      * @param array $entryArray
314 316
      * @param string $referenceTable
315
-     * @return array
317
+     * @return string
316 318
      */
317 319
     private function setArrayToFilterValues($entryArray, $referenceTable = '')
318 320
     {
@@ -496,6 +498,9 @@  discard block
 block discarded – undo
496 498
         return ['customError' => '', 'result' => $aReturn['result']];
497 499
     }
498 500
 
501
+    /**
502
+     * @param string $sReturnType
503
+     */
499 504
     protected function setMySQLquery2ServerConnected($result, $sReturnType)
500 505
     {
501 506
         if ($sReturnType == 'id') {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,7 @@
 block discarded – undo
380 380
 
381 381
     private function setFldLmtsExact($cTp)
382 382
     {
383
-        $xct     = [
383
+        $xct = [
384 384
             'bigint'    => ['l' => -9223372036854775808, 'L' => 999999999999, 's' => 21, 'sUS' => 20],
385 385
             'int'       => ['l' => -2147483648, 'L' => 2147483647, 's' => 11, 'sUS' => 10],
386 386
             'mediumint' => ['l' => -8388608, 'L' => 8388607, 's' => 9, 'sUS' => 8],
Please login to merge, or discard this patch.