Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->publishes([ |
||
15 | __DIR__.'/../resources/config/laravel-link-checker.php' => config_path('laravel-link-checker.php'), |
||
16 | ], 'config'); |
||
17 | |||
18 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-link-checker'); |
||
19 | |||
20 | $this->app->bind('command.linkchecker:run', CheckLinksCommand::class); |
||
21 | |||
22 | $this->commands(['command.linkchecker:run']); |
||
23 | } |
||
24 | |||
48 |