Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'template-operation'); |
||
17 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'template-operation'); |
||
18 | |||
19 | // Publishing is only necessary when using the CLI. |
||
20 | if ($this->app->runningInConsole()) { |
||
21 | $this->bootForConsole(); |
||
22 | } |
||
23 | } |
||
24 | |||
43 |