/** * Logs out the current user. * * @return mixed */ public function actionLogout() { $user = new User(); $user->logOut(); return $this->goHome(); }