getLoginUser(); return $this->handleAccount($user); } protected function handleAccount(UserModel $user) { $accountRepo = new AccountRepo(); $account = $accountRepo->findById($user->id); return [ 'id' => $account->id, 'phone' => $account->phone, 'email' => $account->email, ]; } }