@@ -33,7 +33,7 @@ |
||
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()); |
@@ -33,7 +33,7 @@ |
||
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 | } |