Allow multiple client redirect URIs. Fixes #511

This commit is contained in:
Alex Bilbie
2016-04-09 13:36:08 +01:00
parent 9533595394
commit 8274c56fc2
3 changed files with 44 additions and 4 deletions

View File

@@ -40,9 +40,11 @@ interface ClientEntityInterface
public function setRedirectUri($redirectUri);
/**
* Returns the registered redirect URI.
* Returns the registered redirect URI (as a string).
*
* @return string
* Alternatively return an indexed array of redirect URIs.
*
* @return string|string[]
*/
public function getRedirectUri();
}