Updated repository method names to be more explicit

This commit is contained in:
Alex Bilbie
2015-11-13 17:39:07 +00:00
parent 03e4ac7ea6
commit da8efa20cd
7 changed files with 40 additions and 35 deletions

View File

@ -26,5 +26,5 @@ interface ClientRepositoryInterface extends RepositoryInterface
*
* @return \League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface
*/
public function get($clientIdentifier, $clientSecret = null, $redirectUri = null, $grantType = null);
public function getClientEntity($clientIdentifier, $grantType, $clientSecret = null, $redirectUri = null);
}