Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ViewExportServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap any ViewExport services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
16 | { |
||
17 | // Publish config file |
||
18 | $this->publishes([ |
||
19 | __DIR__.'/../../config/view-export.php' => config_path('view-export.php'), |
||
20 | ], 'config'); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Register any ViewExport services. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
35 | } |
||
36 | } |
||
37 |