Completed
Push — master ( 9baa7d...8ba9dc )
by Tristan
02:20
created
src/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      */
224 224
     public function only(array $keys)
225 225
     {
226
-        return $this->filter(function ($value, $key) use ($keys) {
226
+        return $this->filter(function($value, $key) use ($keys) {
227 227
             return (true === self::keyExists($key, array_flip($keys)));
228 228
         });
229 229
     }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
      */
239 239
     public function except(array $keys)
240 240
     {
241
-        return $this->filter(function ($value, $key) use ($keys) {
241
+        return $this->filter(function($value, $key) use ($keys) {
242 242
             return (false === self::keyExists($key, array_flip($keys)));
243 243
         });
244 244
     }
Please login to merge, or discard this patch.