1 | <?php namespace App\Providers; |
||
5 | class AppServiceProvider extends ServiceProvider { |
||
6 | |||
7 | /** |
||
8 | * Bootstrap any application services. |
||
9 | * |
||
10 | * @return void |
||
11 | */ |
||
12 | public function boot() |
||
16 | |||
17 | /** |
||
18 | * Register any application services. |
||
19 | * |
||
20 | * This service provider is a great spot to register your various container |
||
21 | * bindings with the application. As you can see, we are registering our |
||
22 | * "Registrar" implementation here. You can add your own bindings too! |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function register() |
||
33 | |||
34 | } |
||
35 |