From 0812ca29278894f56bb7bedc24854b163e347904 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Wed, 8 May 2013 13:59:17 -0700 Subject: [PATCH] Added missing clientId variable, fixed docblock --- src/League/OAuth2/Server/Resource.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/League/OAuth2/Server/Resource.php b/src/League/OAuth2/Server/Resource.php index 895bbc8b..8bf96b11 100644 --- a/src/League/OAuth2/Server/Resource.php +++ b/src/League/OAuth2/Server/Resource.php @@ -69,6 +69,12 @@ class Resource */ protected $tokenKey = 'access_token'; + /** + * The client ID + * @var string + */ + protected $clientId = null; + /** * Sets up the Resource * @@ -187,7 +193,7 @@ class Resource /** * Get the session scopes - * @return [type] [description] + * @return array */ public function getScopes() {