| 1 | <?php |
||
| 22 | class AppServiceProvider extends ServiceProvider |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Bootstrap any application services. |
||
| 26 | */ |
||
| 27 | 59 | public function boot() |
|
| 28 | { |
||
| 29 | 59 | } |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Register any application services. |
||
| 33 | * |
||
| 34 | * This service provider is a great spot to register your various container |
||
| 35 | * bindings with the application. As you can see, we are registering our |
||
| 36 | * "Registrar" implementation here. You can add your own bindings too! |
||
| 37 | */ |
||
| 38 | 59 | public function register() |
|
| 54 | } |
||
| 55 |