We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28efcf commit 58bd2baCopy full SHA for 58bd2ba
src/RedirectUriValidators/RedirectUriValidator.php
@@ -88,8 +88,8 @@ private function matchUriExcludingPort($redirectUri)
88
{
89
$parsedUrl = $this->parseUrlAndRemovePort($redirectUri);
90
91
- foreach ($this->allowedRedirectUris as $redirectUri) {
92
- if ($parsedUrl === $this->parseUrlAndRemovePort($redirectUri)) {
+ foreach ($this->allowedRedirectUris as $allowedRedirectUri) {
+ if ($parsedUrl === $this->parseUrlAndRemovePort($allowedRedirectUri)) {
93
return true;
94
}
95
0 commit comments