Completed
Pull Request — develop (#23)
by Chris
04:33
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.
src/KeyTags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.