1 | <?php |
||
27 | class TestingServiceProvider extends ServiceProvider |
||
28 | { |
||
29 | |||
30 | /** |
||
31 | * Indicates if loading of the provider is deferred. |
||
32 | * |
||
33 | * @var bool |
||
34 | */ |
||
35 | protected $defer = false; |
||
36 | |||
37 | /** |
||
38 | * @var Module |
||
39 | */ |
||
40 | protected $module; |
||
41 | |||
42 | /** |
||
43 | * Boot the application events. |
||
44 | * |
||
45 | * @return void |
||
46 | */ |
||
47 | public function boot() |
||
53 | |||
54 | /** |
||
55 | * Register the service provider. |
||
56 | * |
||
57 | * @return void |
||
58 | */ |
||
59 | public function register() |
||
64 | |||
65 | /** |
||
66 | * Get the services provided by the provider. |
||
67 | * |
||
68 | * @return array |
||
69 | */ |
||
70 | public function provides() |
||
74 | |||
75 | /** |
||
76 | * Register config. |
||
77 | * |
||
78 | * @return void |
||
79 | */ |
||
80 | protected function registerConfig() |
||
89 | |||
90 | protected function registerHelpers() |
||
100 | |||
101 | protected function registerMacros() |
||
124 | |||
125 | protected function setIdeHelperPreferredSettings() |
||
138 | |||
139 | protected function registerCommands() |
||
161 | |||
162 | /** |
||
163 | * @param string[] ...$parts |
||
164 | * |
||
165 | * @return string |
||
166 | */ |
||
167 | protected function path(...$parts) : string |
||
171 | |||
172 | /** |
||
173 | * @return Module |
||
174 | */ |
||
175 | protected function getModule() : Module |
||
179 | |||
180 | /** |
||
181 | * @return array |
||
182 | */ |
||
183 | protected function getIdeHelperPreferredSettings() : array |
||
191 | } |
||
192 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.