Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function boot() |
||
17 | { |
||
18 | // Publish config file |
||
19 | $this->publishes([ |
||
20 | __DIR__.'/../../config/healthy.php' => base_path('config/healthy.php'), |
||
21 | ], 'config'); |
||
22 | |||
23 | // Map health check paths |
||
24 | Route::get(config('healthy.uri'), HealthyController::class)->name(config('healthy.route')); |
||
25 | } |
||
38 |