If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
19
$this->app->/** @scrutinizer ignore-call */
20
make(DynamoDbClientInterface::class)
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.
The method publishes() does not exist on Rennokki\DynamoDb\DynamoDbServiceProvider.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
22
$this->/** @scrutinizer ignore-call */
23
publishes([
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.
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
36
$this->app->/** @scrutinizer ignore-call */
37
singleton(DynamoDbClientInterface::class, function () use ($marshalerOptions) {
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.
Loading history...
37
25
$client = new DynamoDbClientService(new Marshaler($marshalerOptions), new EmptyAttributeFilter());
38
39
25
return $client;
40
25
});
41
42
$this->app->singleton('dynamodb', function () {
43
16
return new DynamoDbManager(app(DynamoDbClientInterface::class));
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.