Completed
Push — master ( d359fd...067c7c )
by Daniel
02:19
created
source/MySQLiAdvancedOutput.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
             }
178 178
             return $this->setStringIntoShortTag('input', $inAdtnl);
179 179
         }
180
-        $query         = $this->sQueryGenericSelectKeyValue([
180
+        $query = $this->sQueryGenericSelectKeyValue([
181 181
             $fkArray[$value['COLUMN_NAME']][1],
182 182
             $fkArray[$value['COLUMN_NAME']][2],
183 183
             $fkArray[$value['COLUMN_NAME']][0]
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 
228 228
     private function getFieldOutputTextFK($foreignKeysArray, $value, $iar)
229 229
     {
230
-        $query   = $this->storedQuery('generic_select_key_value', [
230
+        $query = $this->storedQuery('generic_select_key_value', [
231 231
             $foreignKeysArray[$value['COLUMN_NAME']][1],
232 232
             $foreignKeysArray[$value['COLUMN_NAME']][2],
233 233
             $foreignKeysArray[$value['COLUMN_NAME']][0]
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
         if (isset($this->advCache['tableFKs'][$database][$tblName])) {
409 409
             foreach ($this->advCache['tableFKs'][$database][$tblName] as $value) {
410 410
                 if ($value['COLUMN_NAME'] == $onlyCol) {
411
-                    $query                  = $this->sQueryMySqlColumns([
411
+                    $query = $this->sQueryMySqlColumns([
412 412
                         'TABLE_SCHEMA' => $value['REFERENCED_TABLE_SCHEMA'],
413 413
                         'TABLE_NAME'   => $value['REFERENCED_TABLE_NAME'],
414 414
                         'DATA_TYPE'    => [
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
 
508 508
     private function handleFeaturesSingle($fieldName, $features, $featureKey)
509 509
     {
510
-        $fMap    = [
510
+        $fMap = [
511 511
             'readonly' => ['readonly', 'class', 'input_readonly'],
512 512
             'disabled' => ['disabled']
513 513
         ];
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
                 $sReturn[] = $this->setNeededField($tblSrc, $value, $feat);
547 547
             }
548 548
         }
549
-        $btn[]                = $this->setStringIntoShortTag('input', [
549
+        $btn[] = $this->setStringIntoShortTag('input', [
550 550
             'type'  => 'submit',
551 551
             'id'    => 'submit',
552 552
             'style' => 'margin-left:220px;',
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
                         'id'    => $key,
580 580
                         'value' => $value,
581 581
                     ]);
582
-                    $sReturn[]   = $this->setStringIntoTag($hiddenInput, 'div');
582
+                    $sReturn[] = $this->setStringIntoTag($hiddenInput, 'div');
583 583
                 }
584 584
             }
585 585
         }
Please login to merge, or discard this patch.