From 14b680f6be7239be786d31b406a9169392fb8790 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 29 Jan 2013 16:18:45 +0000 Subject: [PATCH] Moved GrantTypeInterface --- src/OAuth2/{ => Grant}/GrantTypeInterface.php | 2 ++ 1 file changed, 2 insertions(+) rename src/OAuth2/{ => Grant}/GrantTypeInterface.php (78%) diff --git a/src/OAuth2/GrantTypeInterface.php b/src/OAuth2/Grant/GrantTypeInterface.php similarity index 78% rename from src/OAuth2/GrantTypeInterface.php rename to src/OAuth2/Grant/GrantTypeInterface.php index ce79a6eb..67a389c2 100644 --- a/src/OAuth2/GrantTypeInterface.php +++ b/src/OAuth2/Grant/GrantTypeInterface.php @@ -7,4 +7,6 @@ interface GrantTypeInterface public function getIdentifier(); public function getResponseType(); + + public function completeFlow(); }