Skip to content

Commit

Permalink
Userinfo Endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Spomky committed Jun 13, 2018
1 parent fd06f8c commit aaba5a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -83,8 +83,8 @@ public function getResponseMode(): string
public function preProcess(Authorization $authorization): Authorization
{
$authorization = $this->codeResponseType->preProcess($authorization);
$authorization = $this->idTokenResponseType->preProcess($authorization);
$authorization = $this->tokenResponseType->preProcess($authorization);
$authorization = $this->idTokenResponseType->preProcess($authorization);

return $authorization;
}
Expand All @@ -95,8 +95,8 @@ public function preProcess(Authorization $authorization): Authorization
public function process(Authorization $authorization): Authorization
{
$authorization = $this->codeResponseType->process($authorization);
$authorization = $this->idTokenResponseType->process($authorization);
$authorization = $this->tokenResponseType->process($authorization);
$authorization = $this->idTokenResponseType->process($authorization);

return $authorization;
}
Expand Down
Expand Up @@ -73,8 +73,8 @@ public function getResponseMode(): string
*/
public function preProcess(Authorization $authorization): Authorization
{
$authorization = $this->idTokenResponseType->preProcess($authorization);
$authorization = $this->tokenResponseType->preProcess($authorization);
$authorization = $this->idTokenResponseType->preProcess($authorization);

return $authorization;
}
Expand All @@ -84,8 +84,8 @@ public function preProcess(Authorization $authorization): Authorization
*/
public function process(Authorization $authorization): Authorization
{
$authorization = $this->idTokenResponseType->process($authorization);
$authorization = $this->tokenResponseType->process($authorization);
$authorization = $this->idTokenResponseType->process($authorization);

return $authorization;
}
Expand Down

0 comments on commit aaba5a5

Please sign in to comment.