1 | <?php |
||
14 | class MainServiceProvider extends ServiceProviderAbstract |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * Indicates if loading of the provider is deferred. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $defer = false; |
||
23 | |||
24 | /** |
||
25 | * Container Service Providers. |
||
26 | * |
||
27 | * @var array |
||
28 | */ |
||
29 | public $containerServiceProviders = [ |
||
30 | |||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * Container Aliases |
||
35 | * |
||
36 | * @var array |
||
37 | */ |
||
38 | public $containerAliases = [ |
||
39 | |||
40 | ]; |
||
41 | |||
42 | /** |
||
43 | * Perform post-registration booting of services. |
||
44 | */ |
||
45 | public function boot() |
||
49 | |||
50 | /** |
||
51 | * Register anything in the container. |
||
52 | */ |
||
53 | public function register() |
||
57 | } |
||
58 |