From 6cab31d7e8a834652de7c61f00ac0821b4a07942 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Fri, 6 Jul 2012 14:05:21 +0100 Subject: [PATCH] Fixing PHP errors --- src/oauth2server/DbInterface.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/oauth2server/DbInterface.php b/src/oauth2server/DbInterface.php index c02ef506..3435c41b 100644 --- a/src/oauth2server/DbInterface.php +++ b/src/oauth2server/DbInterface.php @@ -11,16 +11,16 @@ interface OAuth2ServerDatabase public function newSession( string $clientId, string $redirectUri, - string $type = 'user', + $type = 'user', string $typeId = null, string $authCode = null, string $accessToken = null, - string $stage = 'request' + $stage = 'request' ); public function updateSession( string $clientId, - string $type = 'user', + $type = 'user', string $typeId = null, string $authCode = null, string $accessToken = null,