Passed
Pull Request — master (#3297)
by
unknown
05:03
created
app/Report/ReportParserGenerate.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2605,11 +2605,11 @@
 block discarded – undo
2605 2605
     }
2606 2606
 
2607 2607
         /**
2608
-     * Handle <kekuleNumber />
2609
-     * Prints the kekule order number
2610
-     *
2611
-     * @return void
2612
-     */
2608
+         * Handle <kekuleNumber />
2609
+         * Prints the kekule order number
2610
+         *
2611
+         * @return void
2612
+         */
2613 2613
     protected function kekuleNumberStartHandler(): void
2614 2614
     {
2615 2615
         $this->current_element->addText((string) $this->kekule_number);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -885,7 +885,7 @@  discard block
 block discarded – undo
885 885
         // Until this can be re-designed, we need this assertion to help static analysis tools.
886 886
         assert($this->current_element instanceof ReportBaseElement, new LogicException());
887 887
 
888
-        $this->wt_report       = array_pop($this->wt_report_stack);
888
+        $this->wt_report = array_pop($this->wt_report_stack);
889 889
         $this->wt_report->addElement($this->current_element);
890 890
     }
891 891
 
@@ -1559,7 +1559,7 @@  discard block
 block discarded – undo
1559 1559
             } elseif ($id === 'generation') {
1560 1560
                 $value = '"' . $this->generation . '"';
1561 1561
             } elseif ($id === 'kekule_number') {
1562
-                $value = '"' . $this->kekule_number .'"';
1562
+                $value = '"' . $this->kekule_number . '"';
1563 1563
             } else {
1564 1564
                 $level = (int) explode(' ', trim($this->gedrec))[0];
1565 1565
                 if ($level === 0) {
Please login to merge, or discard this patch.