| 1 | <?php namespace Arcanesoft\Foundation\Providers; |
||
| 11 | class ModuleServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Main Functions |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Register the service provider. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | 12 | public function register() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Boot the service provider. |
||
| 29 | */ |
||
| 30 | 12 | public function boot() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Get the services provided by the provider. |
||
| 37 | * |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | public function provides() |
||
| 46 | } |
||
| 47 |