Passed
Pull Request — master (#107)
by
unknown
15:32
created
parser/ParagraphNode.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
     {
30 30
         $doc = '';
31 31
         foreach ($this->subnodes as $subnode) {
32
-			if (is_a($subnode, TableNode::class)) $doc .= "\n";
33
-			$doc .= $subnode->toSyntax();
32
+            if (is_a($subnode, TableNode::class)) $doc .= "\n";
33
+            $doc .= $subnode->toSyntax();
34 34
         }
35 35
         return $doc;
36 36
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,9 @@
 block discarded – undo
29 29
     {
30 30
         $doc = '';
31 31
         foreach ($this->subnodes as $subnode) {
32
-			if (is_a($subnode, TableNode::class)) $doc .= "\n";
32
+			if (is_a($subnode, TableNode::class)) {
33
+			    $doc .= "\n";
34
+			}
33 35
 			$doc .= $subnode->toSyntax();
34 36
         }
35 37
         return $doc;
Please login to merge, or discard this patch.