Test Setup Failed
Branch master (65ce2a)
by Sebastian
02:38
created
Category
src/Visitor/PostOrderVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     {
34 34
         $resultList = new ArrayList();
35 35
         if ($node !== null) {
36
-            foreach($node->getChildren() as $child) {
36
+            foreach ($node->getChildren() as $child) {
37 37
                 $resultList->merge($child->accept($this));
38 38
             }
39 39
             $resultList->append($node->getItem());
Please login to merge, or discard this patch.
src/Visitor/PreOrderVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $resultList = new ArrayList();
34 34
         if ($node !== null) {
35 35
             $resultList->append($node->getItem());
36
-            foreach($node->getChildren() as $child) {
36
+            foreach ($node->getChildren() as $child) {
37 37
                 $resultList->merge($child->accept($this));
38 38
             }
39 39
         }
Please login to merge, or discard this patch.