diff --git a/src/OAuth2/Storage/ClientInterface.php b/src/OAuth2/Storage/ClientInterface.php index bb339ffc..2abee251 100644 --- a/src/OAuth2/Storage/ClientInterface.php +++ b/src/OAuth2/Storage/ClientInterface.php @@ -43,5 +43,5 @@ interface ClientInterface * @param string $redirectUri The client's redirect URI (default = "null") * @return bool|array Returns false if the validation fails, array on success */ - public function get($clientId = null, $clientSecret = null, $redirectUri = null); + public function getClient($clientId = null, $clientSecret = null, $redirectUri = null); } \ No newline at end of file diff --git a/src/OAuth2/Storage/ScopeInterface.php b/src/OAuth2/Storage/ScopeInterface.php index 895cc4e6..8777aee6 100644 --- a/src/OAuth2/Storage/ScopeInterface.php +++ b/src/OAuth2/Storage/ScopeInterface.php @@ -28,5 +28,5 @@ interface ScopeInterface * @param string $scope The scope * @return bool|array If the scope doesn't exist return false */ - public function get($scope); + public function getScope($scope); }