Passed
Push — develop ( 2994aa...b0d3d3 )
by Raoul
41s queued 10s
created
src/Ast/NormalElement.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,10 +53,10 @@
 block discarded – undo
53 53
         $children = array_merge(array_reduce(
54 54
             $this->childNodes,
55 55
             function ($children, $child) use ($level, $indentChild) {
56
-                return array_merge($children, [$indentChild, $child->beautify($level + 1)]);
56
+                return array_merge($children, [ $indentChild, $child->beautify($level + 1) ]);
57 57
             },
58
-            []
59
-        ), [$indentClosingTag]);
58
+            [ ]
59
+        ), [ $indentClosingTag ]);
60 60
         return new NormalElement($this->localName, $this->attributes, $children);
61 61
     }
62 62
 
Please login to merge, or discard this patch.