From 96435463bc2f8abf68920075133de0189fe0464c Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Thu, 12 Jul 2012 15:07:34 +0100 Subject: [PATCH] Added use statement to hopefully pull in the OAuth2ServerDatabase interface --- src/oauth2server/Server.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/oauth2server/Server.php b/src/oauth2server/Server.php index 415d5cb8..e756af95 100644 --- a/src/oauth2server/Server.php +++ b/src/oauth2server/Server.php @@ -22,6 +22,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. namespace oauth2server; +use oauth2server\OAuth2ServerDatabase; + class OAuthServerClientException extends \Exception {} class OAuthServerUserException extends \Exception {}