1 | <?php |
||
8 | class ServicesServiceProvider extends BaseServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = true; |
||
16 | |||
17 | /** |
||
18 | * Register the service provider. |
||
19 | */ |
||
20 | public function register() |
||
31 | |||
32 | /** |
||
33 | * Bootstrap the application services. |
||
34 | */ |
||
35 | public function boot() |
||
51 | |||
52 | /** |
||
53 | * Get the services provided by the provider. |
||
54 | * |
||
55 | * @return array |
||
56 | */ |
||
57 | public function provides() |
||
64 | } |
||
65 |