@@ -745,7 +745,7 @@ discard block |
||
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 |
||
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 |