1 | <?php namespace Darryldecode\Cart; |
||
5 | class CartServiceProvider extends ServiceProvider { |
||
6 | |||
7 | /** |
||
8 | * Indicates if loading of the provider is deferred. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | protected $defer = false; |
||
13 | |||
14 | /** |
||
15 | * Boot the service provider. |
||
16 | */ |
||
17 | public function boot() |
||
25 | |||
26 | /** |
||
27 | * Register the service provider. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register() |
||
51 | |||
52 | /** |
||
53 | * Get the services provided by the provider. |
||
54 | * |
||
55 | * @return array |
||
56 | */ |
||
57 | public function provides() |
||
61 | } |
||
62 |
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.