Removed null as default for parameters

This commit is contained in:
Alex Bilbie
2013-05-08 19:36:00 -07:00
parent 8b154054c3
commit dbe21cc5a7
3 changed files with 3 additions and 3 deletions

View File

@@ -53,5 +53,5 @@ interface ClientInterface
* @param string $grantType The grant type used in the request
* @return bool|array Returns false if the validation fails, array on success
*/
public function getClient($clientId = null, $clientSecret = null, $redirectUri = null, $grantType = null);
public function getClient($clientId, $clientSecret = null, $redirectUri = null, $grantType);
}