| 1 | <?php |
||
| 7 | class ActivityLoggerServiceProvider 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() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Register the service provider. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function register() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get the services provided by the provider. |
||
| 44 | * |
||
| 45 | * @return array |
||
| 46 | */ |
||
| 47 | public function provides() |
||
| 51 | } |
||
| 52 |