Skip to content

Commit 4ec22a8

Browse files
committed
[Provider] BC: Drop getRedirectUri (unused)
1 parent 9b145f7 commit 4ec22a8

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

AbstractBaseProvider.php

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,12 @@ public function getArrayOption($key, array $default = []): array
103103
return $default;
104104
}
105105

106-
/**
107-
* @return mixed
108-
*/
109-
protected function getRedirectUri()
110-
{
111-
return $this->redirectUri;
112-
}
113-
114106
/**
115107
* @return string
116108
*/
117109
public function getRedirectUrl(): string
118110
{
119-
return str_replace('${provider}', $this->getName(), $this->getRedirectUri());
111+
return str_replace('${provider}', $this->getName(), $this->redirectUri);
120112
}
121113

122114
/**

0 commit comments

Comments
 (0)