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() |
|
34 | |||
35 | /** |
||
36 | * Register the service provider. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | 2 | public function register() |
|
48 | |||
49 | /** |
||
50 | * Setup package assets. |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | 2 | protected function setupAssets() |
|
58 | |||
59 | /** |
||
60 | * Register app manager singleton. |
||
61 | * |
||
62 | * @return void |
||
63 | */ |
||
64 | 2 | protected function registerAppManager() |
|
72 | |||
73 | /** |
||
74 | * Setup application configurations. |
||
75 | * |
||
76 | * @return void |
||
77 | */ |
||
78 | protected function setupConfiguration() |
||
92 | } |
||
93 |