1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-24 20:06:09 +08:00

修正绑定邮箱password未定义错误

This commit is contained in:
xiaochong0302 2023-09-22 20:41:42 +08:00
parent e905e7cb96
commit 26e3e94881
2 changed files with 4 additions and 3 deletions

View File

@ -19,8 +19,6 @@ use App\Services\Logic\User\Console\ContactInfo as ContactInfoService;
use App\Services\Logic\User\Console\ContactUpdate as ContactUpdateService;
use App\Services\Logic\User\Console\CourseList as CourseListService;
use App\Services\Logic\User\Console\FavoriteList as FavoriteListService;
use App\Services\Logic\User\Console\FriendList as FriendListService;
use App\Services\Logic\User\Console\GroupList as GroupListService;
use App\Services\Logic\User\Console\NotificationList as NotificationListService;
use App\Services\Logic\User\Console\NotificationRead as NotificationReadService;
use App\Services\Logic\User\Console\NotifyStats as NotifyStatsService;

View File

@ -29,8 +29,11 @@ class AccountInfo extends LogicService
return [
'id' => $account->id,
'phone' => $account->phone,
'email' => $account->email,
'phone' => $account->phone,
'password' => $account->password,
'create_time' => $account->create_time,
'update_time' => $account->update_time,
];
}