Exemplo n.º 1
0
 /**
  * @return \Mouf\Security\UserService\UserInterface|null
  */
 public function getUser()
 {
     return $this->userService->getLoggedUser();
 }
Exemplo n.º 2
0
 /**
  * Session destroy.
  *
  * @Logged
  * @URL /disconnect
  */
 public function disconnect()
 {
     $this->userService->logoff();
     header('Location:' . ROOT_URL);
 }