Bristol SU Support Package
HttpServiceProvider.php
Go to the documentation of this file.
1 <?php
2 
3 namespace BristolSU\Support\Http;
4 
7 
11 class HttpServiceProvider extends ServiceProvider
12 {
13 
19  public function boot()
20  {
21  $this->app['router']->pushMiddlewareToGroup('module', InjectJavascriptVariables::class);
22  }
23 
24 }