| 1 | <?php |
||
| 25 | class AccessTokenApi |
||
| 26 | { |
||
| 27 | private $client; |
||
| 28 | private $serializer; |
||
| 29 | |||
| 30 | public function __construct(HttpClient $client, Serializer $serializer) |
||
| 35 | |||
| 36 | public function applicationDeAuthenticate($accessTokens, array $parameters = []) |
||
| 40 | |||
| 41 | public function invalidate($accessTokens, array $parameters = []) |
||
| 45 | |||
| 46 | public function read($accessTokens, array $parameters = []) |
||
| 50 | } |
||
| 51 |
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
@returnannotation as described here.