1 | <?php |
||
7 | class SupportServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap any application services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the service. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
44 | |||
45 | /** |
||
46 | * Setup application configurations. |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | protected function setupConfigurations() |
||
58 | |||
59 | /** |
||
60 | * Configure application defaults. |
||
61 | * |
||
62 | * @return void |
||
63 | */ |
||
64 | protected function configureDefaults() |
||
77 | |||
78 | /** |
||
79 | * Merge config data for the given key. |
||
80 | * |
||
81 | * @param string $key |
||
82 | * @param mixed $value |
||
83 | * @return void |
||
84 | */ |
||
85 | protected function mergeConfigForKey($key, $value) |
||
97 | |||
98 | /** |
||
99 | * Configure application for the current request. |
||
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | protected function configureForCurrentRequest() |
||
118 | |||
119 | /** |
||
120 | * Get service providers to be registered. |
||
121 | * |
||
122 | * @return array |
||
123 | */ |
||
124 | protected function getServiceProviders() |
||
152 | |||
153 | /** |
||
154 | * Register for console. |
||
155 | * |
||
156 | * @return void |
||
157 | */ |
||
158 | protected function registerForConsole() |
||
167 | } |
||
168 |