minor improvements and documentation fixes

This commit is contained in:
Julián Gutiérrez
2016-01-20 10:36:16 +01:00
parent 1e1043c04f
commit 3e5889e93b
17 changed files with 37 additions and 54 deletions

View File

@ -20,11 +20,11 @@ interface ClientRepositoryInterface extends RepositoryInterface
* Get a client
*
* @param string $clientIdentifier The client's identifier
* @param string|null $clientSecret The client's secret
* @param string $clientSecret The client's secret
* @param string|null $redirectUri The client's redirect URI
* @param string|null $grantType The grant type used
*
* @return \League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface
*/
public function getClientEntity($clientIdentifier, $grantType, $clientSecret = null, $redirectUri = null);
public function getClientEntity($clientIdentifier, $clientSecret, $redirectUri = null, $grantType = null);
}