Renamed methods to prevent ORM conflict

This commit is contained in:
Alex Bilbie 2013-02-04 17:10:30 +00:00
parent 4b8bc76622
commit 0d173d4c35
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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);
}