@@ -62,7 +62,7 @@ |
||
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; |
@@ -21,7 +21,7 @@ discard block |
||
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 |
||
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 | } |