1 | <?php |
||
7 | class AffiliateNetworkServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = true; |
||
15 | |||
16 | /** |
||
17 | * Bootstrap the application events. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function boot() |
||
27 | |||
28 | /** |
||
29 | * Register the service provider. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function register() |
||
40 | |||
41 | /** |
||
42 | * Get the services provided by the provider. |
||
43 | * |
||
44 | * @return string[] |
||
45 | */ |
||
46 | public function provides() |
||
52 | } |
||
53 |
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.