Set default mustValidateSecret to true

This commit is contained in:
Andrew Millington 2018-02-17 11:46:47 +00:00
parent ee7d52ecaa
commit e0b65a2831
No known key found for this signature in database
GPG Key ID: 815DE090877B53F3

View File

@ -27,5 +27,5 @@ interface ClientRepositoryInterface extends RepositoryInterface
*
* @return ClientEntityInterface
*/
public function getClientEntity($clientIdentifier, $grantType = null, $clientSecret = null, $mustValidateSecret = false);
public function getClientEntity($clientIdentifier, $grantType = null, $clientSecret = null, $mustValidateSecret = true);
}