1 | <?php |
||
8 | class AppsServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the service provider. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | 2 | public function boot() |
|
21 | |||
22 | /** |
||
23 | * Publish assets from package. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 2 | protected function publishAssets() |
|
35 | |||
36 | /** |
||
37 | * Register the service provider. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | 2 | public function register() |
|
51 | |||
52 | /** |
||
53 | * Setup package assets. |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | 2 | protected function setupAssets() |
|
61 | |||
62 | /** |
||
63 | * Register app manager singleton. |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | 2 | protected function registerAppManager() |
|
75 | |||
76 | /** |
||
77 | * Register the configured service providers. |
||
78 | * |
||
79 | * @return void |
||
80 | */ |
||
81 | 2 | protected function registerConfiguredProviders() |
|
95 | |||
96 | /** |
||
97 | * Setup application configurations. |
||
98 | * |
||
99 | * @return void |
||
100 | */ |
||
101 | protected function setupConfiguration() |
||
115 | } |
||
116 |