Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class DemoModeServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application services. |
||
11 | */ |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->publishes([ |
||
15 | __DIR__.'/../config/demo-mode.php' => config_path('demo-mode.php'), |
||
16 | ], 'config'); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Register the application services. |
||
21 | */ |
||
22 | public function register() |
||
39 | } |
||
40 | } |
||
41 |