Completed
Push — master ( 422994...d91556 )
by Josh
02:23
created
src/PackageCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,14 +48,14 @@
 block discarded – undo
48 48
         }
49 49
 
50 50
         $config = @array_map(
51
-            function (AbstractPackage $package) use ($keys, $default) {
51
+            function(AbstractPackage $package) use ($keys, $default) {
52 52
                 return $package->getConfig($keys, $default);
53 53
             },
54 54
             $this->packages
55 55
         );
56 56
 
57 57
         if (2 > func_num_args()) {
58
-            $config = array_filter($config, function ($value) use ($default) {
58
+            $config = array_filter($config, function($value) use ($default) {
59 59
                 return $value !== $default;
60 60
             });
61 61
         }
Please login to merge, or discard this patch.