| 1 | <?php |
||
| 24 | class ApplicationDeAuthenticate |
||
| 25 | { |
||
| 26 | private const URL = '/apps/{accessTokens}/de-authenticate'; |
||
| 27 | |||
| 28 | private $client; |
||
| 29 | private $serializer; |
||
| 30 | |||
| 31 | public function __construct(HttpClient $client, Serializer $serializer) |
||
| 36 | |||
| 37 | public function __invoke($accessTokens, array $parameters = []) |
||
| 46 | |||
| 47 | private function url($accessTokens) : string |
||
| 51 | |||
| 52 | private function stringifyAccessTokens($accessTokens) : string |
||
| 56 | } |
||
| 57 |
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.