DIR:/proc/self/root/usr/local/cwpsrv/var/services/oauth/v2/server/OAuth2/TokenType/ |
Current File : //proc/self/root/usr/local/cwpsrv/var/services/oauth/v2/server/OAuth2/TokenType/Mac.php |
<?php namespace OAuth2\TokenType; use OAuth2\RequestInterface; use OAuth2\ResponseInterface; /** * This is not yet supported! */ class Mac implements TokenTypeInterface { public function getTokenType() { return 'mac'; } public function getAccessTokenParameter(RequestInterface $request, ResponseInterface $response) { throw new \LogicException("Not supported"); } } |