| 1 | <?php |
||
| 10 | class ServicesServiceProvider extends BaseServiceProvider |
||
| 11 | { |
||
| 12 | /** @var array */ |
||
| 13 | protected $cachedServices = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Indicates if loading of the provider is deferred. |
||
| 17 | * |
||
| 18 | * @var bool |
||
| 19 | */ |
||
| 20 | protected $defer = true; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register the service provider. |
||
| 24 | */ |
||
| 25 | public function register() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Bootstrap the application services. |
||
| 39 | */ |
||
| 40 | public function boot() |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Get the services provided by the provider. |
||
| 60 | * |
||
| 61 | * @return array |
||
| 62 | */ |
||
| 63 | public function provides() |
||
| 70 | } |
||
| 71 |