1 | <?php |
||
9 | class SupportServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Bootstrap the application services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
34 | |||
35 | /** |
||
36 | * Register the application service. |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function register() |
||
52 | |||
53 | /** |
||
54 | * Setup application configurations. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | protected function setupConfiguration() |
||
68 | |||
69 | /** |
||
70 | * Configure application for the current request. |
||
71 | * |
||
72 | * @return void |
||
73 | */ |
||
74 | protected function configureForCurrentRequest() |
||
84 | } |
||
85 |