Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions framework/core/src/Forum/Auth/ResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function make(string $provider, string $identifier, callable $configureRe
));
}

private function makeResponse(array $payload): HtmlResponse
protected function makeResponse(array $payload): HtmlResponse
{
$content = sprintf(
'<script>window.close(); window.opener.app.authenticationComplete(%s);</script>',
Expand All @@ -72,7 +72,7 @@ private function makeResponse(array $payload): HtmlResponse
return new HtmlResponse($content);
}

private function makeLoggedInResponse(User $user)
protected function makeLoggedInResponse(User $user)
{
$response = $this->makeResponse(['loggedIn' => true]);

Expand Down