| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class UploadableServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Boot the services for the application. |
||
| 11 | * |
||
| 12 | * @return void |
||
| 13 | */ |
||
| 14 | public function boot() |
||
| 15 | { |
||
| 16 | $this->mergeConfigFrom(__DIR__ . '/../../config/uploadable.php', 'uploadable'); |
||
| 17 | $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Register any application services. |
||
| 22 | * |
||
| 23 | * @return void |
||
| 24 | */ |
||
| 25 | public function register() |
||
| 27 | // |
||
| 28 | } |
||
| 30 |