/**
  *
  * Log the user out via the adapter.
  *
  * @param Auth $auth An authentication tracker.
  *
  * @param string $status The status after logout.
  *
  * @return null
  *
  */
 public function logout(Auth $auth, $status = Status::ANON)
 {
     $this->adapter->logout($auth, $status);
     $this->forceLogout($auth, $status);
 }