Completed
Push — master ( 734525...97c065 )
by Owen
02:29
created
src/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function getWhere(callable $callable)
49 49
     {
50
-        foreach($this->data as $item) {
50
+        foreach ($this->data as $item) {
51 51
             if ($callable($item) === true) {
52 52
                 return is_object($item) ? clone $item : $item;
53 53
             }
Please login to merge, or discard this patch.