class AppServiceProvider extends ServiceProvider

Methods

void
boot()

Bootstrap any application services.

void
register()

Register any application services.

Details

at line 12
void boot()

Bootstrap any application services.

Return Value

void

at line 26
void register()

Register any application services.

This service provider is a great spot to register your various container bindings with the application. As you can see, we are registering our "Registrar" implementation here. You can add your own bindings too!

Return Value

void