Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ServiceProviderForLaravelRecent extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application events. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->publishes([ |
||
17 | __DIR__.'/config/config.php' => config_path('http-request-api-log.php'), |
||
|
|||
18 | ]); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Register the service provider. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function register() |
||
34 | ); |
||
35 | } |
||
37 |