@@ -53,10 +53,10 @@ |
||
| 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 | |