Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class DynamoDbServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Bootstrap the application events. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
17 | { |
||
18 | DynamoDbModel::setDynamoDbClientService( |
||
19 | $this->app->make(DynamoDbClientInterface::class) |
||
|
|||
20 | ); |
||
21 | |||
22 | $this->publishes([ |
||
23 | __DIR__.'/../config/dynamodb.php' => app()->basePath('config/dynamodb.php'), |
||
24 | ]); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | */ |
||
30 | public function register() |
||
44 | }); |
||
45 | } |
||
47 |
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.