1 | <?php |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
2 | |||
0 ignored issues
–
show
|
|||
3 | namespace UniSharp\Uploadable\Providers; |
||
4 | |||
5 | use Illuminate\Support\ServiceProvider; |
||
6 | |||
7 | class UploadableServiceProvider extends ServiceProvider |
||
0 ignored issues
–
show
|
|||
8 | { |
||
0 ignored issues
–
show
|
|||
9 | /** |
||
10 | * Boot the services for the application. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
0 ignored issues
–
show
|
|||
15 | { |
||
0 ignored issues
–
show
|
|||
16 | $this->mergeConfigFrom(__DIR__ . '/../../config/uploadable.php', 'uploadable'); |
||
0 ignored issues
–
show
|
|||
17 | $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
||
0 ignored issues
–
show
|
|||
18 | } |
||
0 ignored issues
–
show
|
|||
19 | |||
20 | /** |
||
21 | * Register any application services. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function register() |
||
26 | { |
||
0 ignored issues
–
show
|
|||
27 | // |
||
0 ignored issues
–
show
|
|||
28 | } |
||
0 ignored issues
–
show
|
|||
29 | } |
||
0 ignored issues
–
show
|
|||
30 |