diff --git a/src/League/OAuth2/Server/Storage/ClientInterface.php b/src/League/OAuth2/Server/Storage/ClientInterface.php
index 2f55b6590..d21ecfabf 100644
--- a/src/League/OAuth2/Server/Storage/ClientInterface.php
+++ b/src/League/OAuth2/Server/Storage/ClientInterface.php
@@ -13,43 +13,45 @@
interface ClientInterface
{
- /**
- * Validate a client
- *
- * Example SQL query:
- *
- *
- * # Client ID + redirect URI
- * SELECT oauth_clients.id FROM oauth_clients LEFT JOIN client_endpoints ON client_endpoints.client_id
- * = oauth_clients.id WHERE oauth_clients.id = $clientId AND client_endpoints.redirect_uri = $redirectUri
- *
- * # Client ID + client secret
- * SELECT oauth_clients.id FROM oauth_clients WHERE oauth_clients.id = $clientId AND
- * oauth_clients.secret = $clientSecret
- *
- * # Client ID + client secret + redirect URI
- * SELECT oauth_clients.id FROM oauth_clients LEFT JOIN client_endpoints ON client_endpoints.client_id
- * = oauth_clients.id WHERE oauth_clients.id = $clientId AND oauth_clients.secret = $clientSecret
- * AND client_endpoints.redirect_uri = $redirectUri
- *
- *
- * Response:
- *
- *
- * Array
- * (
- * [client_id] => (string) The client ID
- * [client secret] => (string) The client secret
- * [redirect_uri] => (string) The redirect URI used in this request
- * [name] => (string) The name of the client
- * )
- *
- *
- * @param string $clientId The client's ID
- * @param string $clientSecret The client's secret (default = "null")
- * @param string $redirectUri The client's redirect URI (default = "null")
- * @param string $grantType The grant type used in the request
- * @return bool|array Returns false if the validation fails, array on success
- */
+ /**
+ * Validate a client
+ *
+ * Example SQL query:
+ *
+ *
+ * # Client ID + redirect URI
+ * SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name
+ * FROM oauth_clients LEFT JOIN oauth_client_endpoints ON oauth_client_endpoints.client_id = oauth_clients.id
+ * WHERE oauth_clients.id = :clientId AND oauth_client_endpoints.redirect_uri = :redirectUri
+ *
+ * # Client ID + client secret
+ * SELECT oauth_clients.id, oauth_clients.secret, oauth_clients.name FROM oauth_clients WHERE
+ * oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret
+ *
+ * # Client ID + client secret + redirect URI
+ * SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name FROM
+ * oauth_clients LEFT JOIN oauth_client_endpoints ON oauth_client_endpoints.client_id = oauth_clients.id
+ * WHERE oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret AND
+ * oauth_client_endpoints.redirect_uri = :redirectUri
+ *
+ *
+ * Response:
+ *
+ *
+ * Array
+ * (
+ * [client_id] => (string) The client ID
+ * [client secret] => (string) The client secret
+ * [redirect_uri] => (string) The redirect URI used in this request
+ * [name] => (string) The name of the client
+ * )
+ *
+ *
+ * @param string $clientId The client's ID
+ * @param string $clientSecret The client's secret (default = "null")
+ * @param string $redirectUri The client's redirect URI (default = "null")
+ * @param string $grantType The grant type used in the request
+ * @return bool|array Returns false if the validation fails, array on success
+ */
public function getClient($clientId = null, $clientSecret = null, $redirectUri = null, $grantType = null);
}
\ No newline at end of file
diff --git a/src/League/OAuth2/Server/Storage/ScopeInterface.php b/src/League/OAuth2/Server/Storage/ScopeInterface.php
index 42a714f3c..34b35b136 100644
--- a/src/League/OAuth2/Server/Storage/ScopeInterface.php
+++ b/src/League/OAuth2/Server/Storage/ScopeInterface.php
@@ -19,7 +19,7 @@ interface ScopeInterface
* Example SQL query:
*
*
- * SELECT * FROM oauth_scopes WHERE scope = $scope
+ * SELECT * FROM oauth_scopes WHERE oauth_scopes.key = :scope
*
*
* Response:
@@ -28,14 +28,15 @@ interface ScopeInterface
* Array
* (
* [id] => (int) The scope's ID
- * [scope] => (string) The scope itself
+ * [key] => (string) The scope itself
* [name] => (string) The scope's name
* [description] => (string) The scope's description
* )
*
*
- * @param string $scope The scope
- * @param string $clientId The client ID
+ * @param string $scope The scope
+ * @param string $clientId The client ID
+ * @param string $grantType The grant type used in the request
* @return bool|array If the scope doesn't exist return false
*/
public function getScope($scope, $clientId = null, $grantType = null);