1 | <?php |
||
22 | class TestingServiceProvider extends ServiceProvider |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * Indicates if loading of the provider is deferred. |
||
27 | * |
||
28 | * @var bool |
||
29 | */ |
||
30 | protected $defer = false; |
||
31 | |||
32 | /** |
||
33 | * Boot the application events. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function boot() |
||
43 | |||
44 | /** |
||
45 | * Register the service provider. |
||
46 | * |
||
47 | * @return void |
||
48 | */ |
||
49 | public function register() |
||
53 | |||
54 | /** |
||
55 | * Get the services provided by the provider. |
||
56 | * |
||
57 | * @return array |
||
58 | */ |
||
59 | public function provides() |
||
63 | |||
64 | /** |
||
65 | * Register config. |
||
66 | * |
||
67 | * @return void |
||
68 | */ |
||
69 | protected function registerConfig() |
||
78 | |||
79 | protected function registerHelpers() |
||
85 | |||
86 | protected function registerMacros() |
||
109 | |||
110 | protected function registerCommands() |
||
132 | |||
133 | /** |
||
134 | * @param string[] ...$parts |
||
135 | * |
||
136 | * @return string |
||
137 | */ |
||
138 | protected function path(...$parts) : string |
||
142 | } |
||
143 |
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.