Passed
Push — master ( 57bf28...9302c9 )
by Dawid
02:53
created
src/Mapping/Collection/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function every(callable $test): bool
140 140
     {
141
-        foreach($this as $item) {
141
+        foreach ($this as $item) {
142 142
             if (!$test($item)) {
143 143
                 return false;
144 144
             }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public function any(callable $test): bool
156 156
     {
157
-        foreach($this as $item) {
157
+        foreach ($this as $item) {
158 158
             if ($test($item)) {
159 159
                 return true;
160 160
             }
Please login to merge, or discard this patch.