Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
6 | { |
||
7 | 2 | public function boot() |
|
8 | { |
||
9 | 2 | if ($this->app->runningInConsole()) { |
|
10 | 2 | $this->publishes([ |
|
11 | 2 | __DIR__ . '/../config/naviga-ad.php' => config_path('naviga-ad.php'), |
|
12 | 2 | ], 'config'); |
|
13 | |||
14 | |||
15 | 2 | $this->commands([]); |
|
16 | } |
||
17 | } |
||
18 | |||
19 | 2 | public function register() |
|
28 | 2 | ); |
|
29 | 2 | }); |
|
32 |