@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | public function dump() |
24 | 24 | { |
25 | - $lines = array_map(function (DumpableInterface $dumper) { |
|
25 | + $lines = array_map(function(DumpableInterface $dumper) { |
|
26 | 26 | return $dumper->dump(); |
27 | 27 | }, $this->getComponents()); |
28 | 28 |
@@ -143,7 +143,7 @@ |
||
143 | 143 | |
144 | 144 | public function dump() |
145 | 145 | { |
146 | - $lines = array_map(function (Segment $segment) { |
|
146 | + $lines = array_map(function(Segment $segment) { |
|
147 | 147 | return $segment->dump(); |
148 | 148 | }, $this->segments); |
149 | 149 |
@@ -101,7 +101,7 @@ |
||
101 | 101 | |
102 | 102 | public function dump() |
103 | 103 | { |
104 | - return implode("\n", array_map(function (Tag\KeyTag $tag) { |
|
104 | + return implode("\n", array_map(function(Tag\KeyTag $tag) { |
|
105 | 105 | return $tag->dump(); |
106 | 106 | }, $this->tags)); |
107 | 107 | } |