Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->loadTranslationsFrom(__DIR__.'/../vendor/chinleung/php-weekday/resources/lang', 'laravel-weekday'); |
||
15 | |||
16 | if ($this->app->runningInConsole()) { |
||
17 | $this->publishes([ |
||
18 | __DIR__.'/../vendor/chinleung/php-weekday/resources/lang' => resource_path('lang/vendor/laravel-weekday'), |
||
19 | ], 'lang'); |
||
20 | } |
||
21 | } |
||
22 | |||
33 |