1 | <?php namespace Camelcased\Postmark; |
||
7 | class PostmarkServiceProvider extends ServiceProvider { |
||
8 | |||
9 | /** |
||
10 | * Indicates if loading of the provider is deferred. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | protected $defer = false; |
||
15 | |||
16 | /** |
||
17 | * Register the service provider. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function register() |
||
29 | |||
30 | /** |
||
31 | * Get the services provided by the provider. |
||
32 | * |
||
33 | * @return array |
||
34 | */ |
||
35 | public function provides() |
||
39 | |||
40 | } |
||
41 |
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.