@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | */ |
| 86 | 86 | public function addVisitor($callable, $condition, $when = self::BEFORE) |
| 87 | 87 | { |
| 88 | - $this->visitors[]= array($when, $condition, $callable); |
|
| 88 | + $this->visitors[] = array($when, $condition, $callable); |
|
| 89 | 89 | |
| 90 | 90 | return $this; |
| 91 | 91 | } |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | private function doTraverse($node, $path = array()) |
| 113 | 113 | { |
| 114 | 114 | foreach ($node as $name => $value) { |
| 115 | - $path[]= $name; |
|
| 115 | + $path[] = $name; |
|
| 116 | 116 | $value = $this->doVisit($path, $value, self::BEFORE); |
| 117 | 117 | |
| 118 | 118 | if (is_array($value)) { |