| 1 | <?php |
||
| 7 | class MapperServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = false; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Bootstrap the application events. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function boot() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Register the service provider. |
||
| 38 | * |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | public function register() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Get the services provided by the provider. |
||
| 56 | * |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | public function provides() |
||
| 63 | } |
||
| 64 |