1 | <?php |
||
8 | class ServiceProvider extends BaseServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = false; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application events. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | 3 | public function boot() |
|
27 | |||
28 | /** |
||
29 | * Register the service provider. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | 3 | public function register() |
|
43 | } |
||
44 |
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.