remove index

remove unneeded index
This commit is contained in:
Adam Magness 2017-12-05 06:58:57 -05:00
parent 12ab38f417
commit 22a3c7ad7d
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class FKOAuthDataStore extends OAuthDataStore
$r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]);
if (DBM::is_result($r)) {
return new OAuthToken($r[0]['id'], $r[0]['secret']);
return new OAuthToken($r['id'], $r['secret']);
}
return null;