Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace H4ad\Scheduler; |
||
22 | public function boot() |
||
23 | { |
||
24 | $this->publishes([ |
||
25 | __DIR__.'/../config/config.php' => config_path('scheduler.php'), |
||
26 | ]); |
||
27 | |||
28 | $this->loadMigrationsFrom(__DIR__.'/Migrations'); |
||
29 | $this->loadTranslationsFrom(__DIR__.'/Translations', 'scheduler'); |
||
30 | |||
31 | $this->publishes([ |
||
32 | __DIR__.'/Translations' => resource_path('lang/vendor/scheduler'), |
||
33 | ]); |
||
63 | } |