1 | <?php |
||
7 | class PleskServiceProvider extends LaravelServiceProvider { |
||
8 | |||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = false; |
||
15 | |||
16 | /** |
||
17 | * Bootstrap the application events. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function boot() { |
||
25 | |||
26 | /** |
||
27 | * Register the service provider. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register() { |
||
37 | |||
38 | /** |
||
39 | * Get the services provided by the provider. |
||
40 | * |
||
41 | * @return array |
||
42 | */ |
||
43 | public function provides() { |
||
47 | |||
48 | private function handleConfigs() { |
||
56 | } |
||
57 |
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.