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