1 | <?php |
||
7 | class SupportServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap any application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
20 | |||
21 | /** |
||
22 | * Register the service. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function register() |
||
38 | |||
39 | /** |
||
40 | * Setup application configurations. |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | protected function setupConfigurations() |
||
52 | |||
53 | /** |
||
54 | * Configure application defaults. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | protected function configureDefaults() |
||
71 | |||
72 | /** |
||
73 | * Configure application for the current request. |
||
74 | * |
||
75 | * @return void |
||
76 | */ |
||
77 | protected function configureForCurrentRequest() |
||
92 | |||
93 | /** |
||
94 | * Get service providers to be registered. |
||
95 | * |
||
96 | * @return array |
||
97 | */ |
||
98 | protected function getServiceProviders() |
||
128 | |||
129 | /** |
||
130 | * Register for console. |
||
131 | * |
||
132 | * @return void |
||
133 | */ |
||
134 | protected function registerForConsole() |
||
142 | } |
||
143 |