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