Passed
Branch feature/coroutine_feature (16a200)
by Albert
02:06
created
src/Concerns/ResetApplication.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      */
52 52
     protected function rebindProviderContainer($app, $provider)
53 53
     {
54
-        $closure = function () use ($app) {
54
+        $closure = function() use ($app) {
55 55
             $this->app = $app;
56 56
         };
57 57
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         if ($this->isLaravel()) {
101 101
             $router = $app->make('router');
102 102
             $request = $this->getRequest();
103
-            $closure = function () use ($app, $request) {
103
+            $closure = function() use ($app, $request) {
104 104
                 $this->container = $app;
105 105
                 if (is_null($request)) {
106 106
                     return;
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $view = $app->make('view');
137 137
 
138
-        $closure = function () use ($app) {
138
+        $closure = function() use ($app) {
139 139
             $this->container = $app;
140 140
             $this->shared['app'] = $app;
141 141
         };
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         if ($this->isLaravel()) {
153 153
             $kernel = $app->make(Kernel::class);
154 154
 
155
-            $closure = function () use ($app) {
155
+            $closure = function() use ($app) {
156 156
                 $this->app = $app;
157 157
             };
158 158
 
Please login to merge, or discard this patch.