openstackid/app/libs/oauth2/endpoints/TokenEndpoint.php

19 lines
313 B
PHP

<?php
/**
* Created by PhpStorm.
* User: smarcet
* Date: 12/2/13
* Time: 3:30 PM
*/
namespace oauth2\endpoints;
use oauth2\requests\OAuth2Request;
class TokenEndpoint implements IOAuth2Endpoint {
public function handle(OAuth2Request $request)
{
// TODO: Implement handle() method.
}
}