Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
12 | 27 | public function boot() |
|
13 | { |
||
14 | 27 | if ($this->app->runningInConsole()) { |
|
15 | 27 | $this->publishResources(); |
|
16 | } |
||
17 | |||
18 | // Translations |
||
19 | 27 | $this->loadTranslationsFrom(__DIR__.'/../resources/lang', 'seoable'); |
|
20 | |||
21 | 27 | $this->app->register(\Artesaos\SEOTools\Providers\SEOToolsServiceProvider::class); |
|
22 | 27 | } |
|
23 | |||
53 |