Total Complexity | 4 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
12 | class SlackServiceProvider extends AbstractServiceProvider implements BootableServiceProviderInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | protected $provides = [ |
||
18 | Client::class, |
||
19 | SlackService::class, |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function register() |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Method will be invoked on registration of a service provider implementing |
||
31 | * this interface. Provides ability for eager loading of Service Providers. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function boot() |
||
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.