The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
37
{
38
return (new ApplicationDeAuthenticate($this->client, $this->serializer))->__invoke($accessTokens, $parameters);
39
}
40
41
public function invalidate($accessTokens, array $parameters = [])
The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
42
{
43
return (new Invalidate($this->client, $this->serializer))->__invoke($accessTokens, $parameters);
44
}
45
46
public function read($accessTokens, array $parameters = [])
The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
47
{
48
return (new Read($this->client, $this->serializer))->__invoke($accessTokens, $parameters);
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.