1 | <?php |
||
11 | class TmdbServiceProviderLaravel4 extends ServiceProvider { |
||
12 | |||
13 | /** |
||
14 | * Bootstrap the application events. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function boot() |
||
22 | |||
23 | /** |
||
24 | * Register the service provider. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
32 | |||
33 | /** |
||
34 | * Get the TMDB configuration from the config repository |
||
35 | * |
||
36 | * @return array |
||
37 | */ |
||
38 | public function config() |
||
42 | } |
||
43 |
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.