Completed
Push — develop ( f101a1...f94113 )
by Chris
12s
created
src/AbstractContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Segments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.