Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /**
  2. * Logs the current user out.
  3. *
  4. * @return SymfonyComponentHttpFoundationRedirectResponse
  5. * A redirection to home page.
  6. */
  7. public function logout() {
  8. user_logout();
  9. return $this->redirect('<front>');
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement