Completed
Push — master ( a0585d...d359fd )
by Daniel
04:25
created
source/MySQLiAdvancedOutput.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
             }
177 177
             return $this->setStringIntoShortTag('input', $inAdtnl);
178 178
         }
179
-        $query         = $this->sQueryGenericSelectKeyValue([
179
+        $query = $this->sQueryGenericSelectKeyValue([
180 180
             $fkArray[$value['COLUMN_NAME']][1],
181 181
             $fkArray[$value['COLUMN_NAME']][2],
182 182
             $fkArray[$value['COLUMN_NAME']][0]
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             }
220 220
         }
221 221
         if (isset($foreignKeysArray)) {
222
-            $query   = $this->storedQuery('generic_select_key_value', [
222
+            $query = $this->storedQuery('generic_select_key_value', [
223 223
                 $foreignKeysArray[$value['COLUMN_NAME']][1],
224 224
                 $foreignKeysArray[$value['COLUMN_NAME']][2],
225 225
                 $foreignKeysArray[$value['COLUMN_NAME']][0]
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
         if (isset($this->advCache['tableFKs'][$database][$tblName])) {
404 404
             foreach ($this->advCache['tableFKs'][$database][$tblName] as $value) {
405 405
                 if ($value['COLUMN_NAME'] == $onlyCol) {
406
-                    $query                  = $this->sQueryMySqlColumns([
406
+                    $query = $this->sQueryMySqlColumns([
407 407
                         'TABLE_SCHEMA' => $value['REFERENCED_TABLE_SCHEMA'],
408 408
                         'TABLE_NAME'   => $value['REFERENCED_TABLE_NAME'],
409 409
                         'DATA_TYPE'    => [
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
 
510 510
     private function handleFeaturesSingle($fieldName, $features, $featureKey)
511 511
     {
512
-        $fMap    = [
512
+        $fMap = [
513 513
             'readonly' => ['readonly', 'class', 'input_readonly'],
514 514
             'disabled' => ['disabled']
515 515
         ];
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
                 $sReturn[] = $this->setNeededField($tblSrc, $value, $feat);
549 549
             }
550 550
         }
551
-        $btn[]                = $this->setStringIntoShortTag('input', [
551
+        $btn[] = $this->setStringIntoShortTag('input', [
552 552
             'type'  => 'submit',
553 553
             'id'    => 'submit',
554 554
             'style' => 'margin-left:220px;',
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
                         'id'    => $key,
582 582
                         'value' => $value,
583 583
                     ]);
584
-                    $sReturn[]   = $this->setStringIntoTag($hiddenInput, 'div');
584
+                    $sReturn[] = $this->setStringIntoTag($hiddenInput, 'div');
585 585
                 }
586 586
             }
587 587
         }
Please login to merge, or discard this patch.