Completed
Push — master ( c981de...36d546 )
by Daniel
02:42
created
source/DomComponentsByDanielGP.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
                                     . $aElements[$rCntr][$value] . '"/>';
412 412
                             break;
413 413
                         case 'edit':
414
-                            $edt           = '';
414
+                            $edt = '';
415 415
                             if (isset($ftrs['NoAjaxEditing'])) {
416 416
                                 $edt .= $_SERVER['PHP_SELF'] . '?' . $actPrfx
417 417
                                         . $action_key . '=' . $value[0] . '&';
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
                     switch ($value[1]) {
480 480
                         case '/':
481 481
                             // next variable is only to avoid a long line
482
-                            $shorter                 = [
482
+                            $shorter = [
483 483
                                 $aElements[$rCntr][$value[3]],
484 484
                                 $aElements[$rCntr][$value[4]],
485 485
                             ];
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
                             break;
488 488
                         case '+':
489 489
                             // next variable is only to avoid a long line
490
-                            $iTemp                   = $this->setArrayValuesAsKey([
490
+                            $iTemp = $this->setArrayValuesAsKey([
491 491
                                 $value[0],
492 492
                                 $value[1],
493 493
                                 $value[2]
@@ -846,7 +846,7 @@  discard block
 block discarded – undo
846 846
                                         . filter_var($value, FILTER_SANITIZE_STRING) . '">';
847 847
                                 break;
848 848
                             case 'title':
849
-                                $aFeatures[]                 = '<title>'
849
+                                $aFeatures[] = '<title>'
850 850
                                         . filter_var($value, FILTER_SANITIZE_STRING) . '</title>';
851 851
                                 break;
852 852
                         }
Please login to merge, or discard this patch.
source/CommonBasic.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             'Name'                   => $info->getRealPath(),
59 59
             'Type'                   => $info->getType(),
60 60
         ];
61
-        $aDetails          = array_merge($aFileBasicDetails, $this->getFileDetailsRawStatistic($info, $fileGiven));
61
+        $aDetails = array_merge($aFileBasicDetails, $this->getFileDetailsRawStatistic($info, $fileGiven));
62 62
         ksort($aDetails);
63 63
         return $aDetails;
64 64
     }
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      */
215 215
     protected function setJsonErrorInPlainEnglish()
216 216
     {
217
-        $knownErrors  = [
217
+        $knownErrors = [
218 218
             JSON_ERROR_NONE           => null,
219 219
             JSON_ERROR_DEPTH          => 'Maximum stack depth exceeded',
220 220
             JSON_ERROR_STATE_MISMATCH => 'Underflow or the modes mismatch',
Please login to merge, or discard this patch.
source/DomCssAndJavascriptByDanielGPwithCDN.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
             'highcharts' => 'setJavascriptFileCDNforHighCharts',
134 134
             'exporting'  => 'setJavascriptFileCDNforHighChartsExporting',
135 135
         ];
136
-        $rootFN     = pathinfo($sFileParts[0])['basename'];
136
+        $rootFN = pathinfo($sFileParts[0])['basename'];
137 137
         if (array_key_exists($rootFN, $knownFNs)) {
138 138
             return call_user_func([$this, $knownFNs[$rootFN]], pathinfo($jsFileName)['basename']);
139 139
         }
Please login to merge, or discard this patch.
source/MySQLiAdvancedOutput.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 
215 215
     private function getFieldOutputNumericNonFK($fkArray, $value, $iar = [])
216 216
     {
217
-        $query         = $this->sQueryGenericSelectKeyValue([
217
+        $query = $this->sQueryGenericSelectKeyValue([
218 218
             $fkArray[$value['COLUMN_NAME']][1],
219 219
             $fkArray[$value['COLUMN_NAME']][2],
220 220
             $fkArray[$value['COLUMN_NAME']][0],
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 
255 255
     private function getFieldOutputTextFK($foreignKeysArray, $value, $iar)
256 256
     {
257
-        $query   = $this->sQueryGenericSelectKeyValue([
257
+        $query = $this->sQueryGenericSelectKeyValue([
258 258
             $foreignKeysArray[$value['COLUMN_NAME']][1],
259 259
             $foreignKeysArray[$value['COLUMN_NAME']][2],
260 260
             $foreignKeysArray[$value['COLUMN_NAME']][0]
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
 
542 542
     private function handleFeaturesSingle($fieldName, $features, $featureKey)
543 543
     {
544
-        $fMap    = [
544
+        $fMap = [
545 545
             'readonly' => ['readonly', 'class', 'input_readonly'],
546 546
             'disabled' => ['disabled']
547 547
         ];
Please login to merge, or discard this patch.
source/MySQLiByDanielGP.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -380,7 +380,7 @@  discard block
 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],
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
                 case 'array_numbered':
421 421
                 case 'array_pairs_key_value':
422 422
                 case 'full_array_key_numbered':
423
-                    $aReturn           = $this->setMySQLquery2ServerByPattern([
423
+                    $aReturn = $this->setMySQLquery2ServerByPattern([
424 424
                         'NoOfColumns' => $result->field_count,
425 425
                         'NoOfRows'    => $result->num_rows,
426 426
                         'QueryResult' => $result,
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
                     break;
431 431
                 case 'full_array_key_numbered_with_record_number_prefix':
432 432
                 case 'full_array_key_numbered_with_prefix':
433
-                    $aReturn           = $this->setMySQLquery2ServerByPattern([
433
+                    $aReturn = $this->setMySQLquery2ServerByPattern([
434 434
                         'NoOfColumns' => $result->field_count,
435 435
                         'NoOfRows'    => $result->num_rows,
436 436
                         'QueryResult' => $result,
Please login to merge, or discard this patch.