Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__.'/../config/tiktok.php' => config_path('tiktok.php'), |
||
18 | ], 'config'); |
||
19 | |||
20 | $this->publishes([ |
||
21 | __DIR__.'/../resources/lang' => "{$this->app['path.lang']}/vendor/tiktok", |
||
22 | ]); |
||
23 | |||
24 | $this->loadTranslationsFrom(__DIR__.'/../resources/lang/', 'tiktok'); |
||
25 | } |
||
43 |