1 | <?php |
||
9 | class SupportServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Bootstrap any application services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
28 | |||
29 | /** |
||
30 | * Register the service. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function register() |
||
46 | |||
47 | /** |
||
48 | * Setup application configurations. |
||
49 | * |
||
50 | * @return void |
||
51 | */ |
||
52 | protected function setupConfigurations() |
||
60 | |||
61 | /** |
||
62 | * Configure application defaults. |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | protected function configureDefaults() |
||
76 | |||
77 | /** |
||
78 | * Configure application for the current request. |
||
79 | * |
||
80 | * @return void |
||
81 | */ |
||
82 | protected function configureForCurrentRequest() |
||
92 | |||
93 | /** |
||
94 | * Get the current sub application identifier. |
||
95 | * |
||
96 | * @return string|null |
||
97 | */ |
||
98 | protected function getCurrentAppIdentifier() |
||
114 | |||
115 | /** |
||
116 | * Remove the scheme for the given URL. |
||
117 | * |
||
118 | * @param string $url |
||
119 | * @return string |
||
120 | */ |
||
121 | protected function removeUrlScheme($url) |
||
125 | |||
126 | /** |
||
127 | * Get service providers to be registered. |
||
128 | * |
||
129 | * @return array |
||
130 | */ |
||
131 | protected function getServiceProviders() |
||
159 | |||
160 | /** |
||
161 | * Register for console. |
||
162 | * |
||
163 | * @return void |
||
164 | */ |
||
165 | protected function registerForConsole() |
||
174 | } |
||
175 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.