| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 5 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Bootstrap the application services. |
||
| 9 | * |
||
| 10 | * @return void |
||
| 11 | */ |
||
| 12 | public function boot() |
||
| 13 | { |
||
| 14 | $this->publishes([ |
||
| 15 | __DIR__.'/../config/medialibrary-extension.php' => config_path('medialibrary-extension.php') |
||
|
|
|||
| 16 | ], 'config'); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Register the application services. |
||
| 21 | * |
||
| 22 | * @return void |
||
| 23 | */ |
||
| 24 | public function register() |
||
| 33 | } |
||
| 34 | } |
||
| 35 |