| 1 | <?php |
||
| 7 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Bootstrap any application services. |
||
| 11 | * |
||
| 12 | * @return void |
||
| 13 | */ |
||
| 14 | 3 | public function boot() |
|
| 20 | |||
| 21 | /** |
||
| 22 | * Register the service provider. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | 3 | public function register() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Register the Blade engine implementation. |
||
| 33 | * |
||
| 34 | * @return void |
||
| 35 | */ |
||
| 36 | 3 | public function registerEmailEngine() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Get the services provided by the provider. |
||
| 54 | * |
||
| 55 | * @return array |
||
| 56 | */ |
||
| 57 | 1 | public function provides() |
|
| 63 | } |