Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | if ($this->app->runningInConsole()) { |
||
17 | $this->publishes([ |
||
18 | __DIR__.'/../config/config.php' => config_path('xray.php'), |
||
19 | ], 'config'); |
||
20 | } |
||
21 | |||
22 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'xray'); |
||
23 | |||
24 | $this->registerMiddleware(XrayMiddleware::class); |
||
25 | } |
||
26 | |||
48 |