mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-16 02:08:56 +05:30
Updated grantTypeInterface
This commit is contained in:
parent
d732778f65
commit
2c1dedfe8a
@ -1,6 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace OAuth2;
|
||||
namespace OAuth2\Grant;
|
||||
|
||||
use OAuth2\Request;
|
||||
use OAuth2\AuthServer;
|
||||
use OAuth2\Exception;
|
||||
use OAuth2\Util\SecureKey;
|
||||
use OAuth2\Storage\SessionInterface;
|
||||
use OAuth2\Storage\ClientInterface;
|
||||
use OAuth2\Storage\ScopeInterface;
|
||||
|
||||
interface GrantTypeInterface
|
||||
{
|
||||
@ -8,5 +16,5 @@ interface GrantTypeInterface
|
||||
|
||||
public function getResponseType();
|
||||
|
||||
public function completeFlow();
|
||||
public function completeFlow($inputParams = null, $authParams = array(), Request $request);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user