Completed
Push — master ( 0ce86f...2fe179 )
by
unknown
30s
created
Zewa/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     public function isEmpty() : bool
37 37
     {
38
-        if (! empty($this->collection)) {
38
+        if (!empty($this->collection)) {
39 39
             return false;
40 40
         }
41 41
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         $result = [];
135 135
 
136 136
         foreach ($this->collection as $key => $item) {
137
-            if (! $func($key, $item)) {
137
+            if (!$func($key, $item)) {
138 138
                 $result[$key] = $item;
139 139
             }
140 140
         }
Please login to merge, or discard this patch.