1 | <?php |
||
12 | class ApiServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /** |
||
15 | * Indicates if loading of the provider is deferred. |
||
16 | * |
||
17 | * @var bool |
||
18 | */ |
||
19 | protected $defer = false; |
||
20 | |||
21 | /** |
||
22 | * Bootstrap the application events. |
||
23 | */ |
||
24 | public function boot() |
||
30 | |||
31 | /** |
||
32 | * Register the service provider. |
||
33 | */ |
||
34 | public function register() |
||
46 | |||
47 | /** |
||
48 | * Get the services provided by the provider. |
||
49 | * |
||
50 | * @return array |
||
51 | */ |
||
52 | public function provides() |
||
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.