1 | <?php |
||
7 | class AppsServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the service provider. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | 2 | public function boot() |
|
20 | |||
21 | /** |
||
22 | * Publish assets from package. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | 2 | protected function publishAssets() |
|
36 | |||
37 | /** |
||
38 | * Register the service provider. |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | 2 | public function register() |
|
50 | |||
51 | /** |
||
52 | * Setup package assets. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | 2 | protected function setupAssets() |
|
60 | |||
61 | /** |
||
62 | * Register app manager singleton. |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | protected function registerAppManager() |
||
74 | |||
75 | /** |
||
76 | * Setup application configurations. |
||
77 | * |
||
78 | * @return void |
||
79 | */ |
||
80 | protected function setupConfiguration() |
||
94 | } |
||
95 |