Completed
Pull Request — master (#7)
by Harry
01:42
created
test/unit/Collection/ImmutableCollectionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     {
108 108
         $coll = new ImmutableCollection(['foo', 'bar', 'baz']);
109 109
         $result = $coll->reduce(function ($carry, $item) {
110
-            return $carry . $item;
110
+            return $carry.$item;
111 111
         });
112 112
 
113 113
         $this->assertEquals('foobarbaz', $result);
Please login to merge, or discard this patch.
test/unit/Collection/CollectionTest.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
         $coll = new Collection(['foo', 'bar', 'baz']);
103 103
         $result = $coll->reduce(function ($carry, $item) {
104
-            return $carry . $item;
104
+            return $carry.$item;
105 105
         });
106 106
 
107 107
         $this->assertEquals('foobarbaz', $result);
Please login to merge, or discard this patch.