Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | class ConsolifyServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application events. |
||
11 | */ |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->publishes([ |
||
15 | __DIR__.'/../config/consolify.php' => config_path('consolify.php'), |
||
16 | ]); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Register the service provider. |
||
21 | */ |
||
22 | public function register() |
||
25 | |||
26 | // ... |
||
29 |