Completed
Push — 0.7.0 ( 7b3d84 )
by Alexander
15s queued 14s
created
src/components/Core/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -745,7 +745,7 @@  discard block
 block discarded – undo
745 745
         $this->register($instance = new $provider($this));
746 746
 
747 747
         if ( ! $this->isBooted()) {
748
-            $this->booting(function () use ($instance) {
748
+            $this->booting(function() use ($instance) {
749 749
                 $this->bootProviderClass($instance);
750 750
             });
751 751
         }
@@ -786,7 +786,7 @@  discard block
 block discarded – undo
786 786
 
787 787
         $this->bootAppCallbacks($this->bootingCallbacks);
788 788
 
789
-        array_walk($this->serviceProviders, function ($provider) {
789
+        array_walk($this->serviceProviders, function($provider) {
790 790
             $this->bootProviderClass($provider);
791 791
         });
792 792
 
Please login to merge, or discard this patch.
src/components/Controller/ControllerDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 
95 95
         $middleware = $controller->getMiddleware();
96 96
 
97
-        return collect($middleware)->reject(function ($data) use ($method) {
97
+        return collect($middleware)->reject(function($data) use ($method) {
98 98
             return static::methodExcludedByOptions($method, $data['options']);
99 99
         })->pluck('middleware')->all();
100 100
     }
Please login to merge, or discard this patch.