Updated grantTypeInterface

This commit is contained in:
Alex Bilbie 2013-02-01 14:56:36 +00:00
parent d732778f65
commit 2c1dedfe8a

View File

@ -1,6 +1,14 @@
<?php <?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 interface GrantTypeInterface
{ {
@ -8,5 +16,5 @@ interface GrantTypeInterface
public function getResponseType(); public function getResponseType();
public function completeFlow(); public function completeFlow($inputParams = null, $authParams = array(), Request $request);
} }