| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class AssetLibraryServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | 67 | public function boot() |
|
| 11 | { |
||
| 12 | 67 | (new MediaLibraryServiceProvider($this->app))->boot(); |
|
| 13 | |||
| 14 | 67 | $this->publishes([ |
|
| 15 | 67 | __DIR__.'/../config/assetlibary.php' => config_path('thinktomorrow/assetlibrary.php'), |
|
| 16 | 67 | ], 'assetlibrary-config'); |
|
| 17 | |||
| 18 | 67 | $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
| 19 | 67 | } |
|
| 20 | |||
| 21 | /** |
||
| 22 | * Register any package services. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | 67 | public function register() |
|
| 31 | 67 | } |
|
| 32 | } |
||
| 33 |