Test Setup Failed
Branch master (9b92fd)
by hugh
05:04
created
Category
src/Middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                 continue;
63 63
             }
64 64
 
65
-            $method->invokeArgs($this, [$request, $response]);
65
+            $method->invokeArgs($this, [ $request, $response ]);
66 66
         }
67 67
 
68 68
         return $response;
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
             $kernel = $this->app->make(Kernel::class);
22 22
             $kernel->prependMiddleware(Middleware::class);
23 23
         } elseif ($this->app instanceof LumenApplication) {
24
-            $this->app->middleware([Middleware::class]);
24
+            $this->app->middleware([ Middleware::class ]);
25 25
         }
26 26
     }
27 27
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $source = realpath($raw = __DIR__.'/../config/httpSecurity.php') ?: $raw;
36 36
 
37 37
         if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
38
-            $this->publishes([$source => config_path('httpSecurity.php')]);
38
+            $this->publishes([ $source => config_path('httpSecurity.php') ]);
39 39
         } elseif ($this->app instanceof LumenApplication) {
40 40
             $this->app->configure('httpSecurity');
41 41
         }
Please login to merge, or discard this patch.