Updated the interfaces and dropped oauth version

Seems the oauth lib's stable version is 3.2, dropped down from the 4 version
to that.
This commit is contained in:
Josh Sherman 2014-10-14 22:05:52 -04:00
parent c244e02d46
commit dc06f37320
5 changed files with 128 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class ClientStorage extends StorageAdapter implements ClientInterface
{
$sql = 'SELECT oauth_clients.id, oauth_clients.name'
. ' FROM oauth_clients'
. ' JOIN oauth_sessions'
. ' INNER JOIN oauth_sessions'
. ' ON oauth_clients.id = oauth_sessions.client_id'
. ' WHERE oauth_sessions.id = ?';