Skip to content

Commit

Permalink
Correct logout mistake in readme (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
edent authored May 6, 2023
1 parent aa57a5c commit 2f2718f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class ExampleController extends AbstractController
public function private(): Response
{
return new Response(
'<html><body><pre>' . print_r($this->getUser(), true) . '</pre> <a href="/auth0/logout">Logout</a></body></html>'
'<html><body><pre>' . print_r($this->getUser(), true) . '</pre> <a href="/logout">Logout</a></body></html>'
);
}
}
Expand Down

0 comments on commit 2f2718f

Please sign in to comment.