From 6553fb3f228c550d55d8f3133e80adc6d7873d2c Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 11 Dec 2012 12:09:56 +0000 Subject: [PATCH] Return client details --- src/Oauth2/Authentication/Server.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Oauth2/Authentication/Server.php b/src/Oauth2/Authentication/Server.php index 8f58bb9e..7798c0da 100644 --- a/src/Oauth2/Authentication/Server.php +++ b/src/Oauth2/Authentication/Server.php @@ -163,6 +163,8 @@ class Server throw new ClientException($this->errors['invalid_client'], 8); } + $params['client_details'] = $clientDetails; + // Response type if ( ! isset($authParams['response_type']) && ! isset($_GET['response_type'])) {