mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-25 12:09:09 +08:00
修正绑定邮箱password未定义错误
This commit is contained in:
parent
e905e7cb96
commit
26e3e94881
@ -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\ContactUpdate as ContactUpdateService;
|
||||||
use App\Services\Logic\User\Console\CourseList as CourseListService;
|
use App\Services\Logic\User\Console\CourseList as CourseListService;
|
||||||
use App\Services\Logic\User\Console\FavoriteList as FavoriteListService;
|
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\NotificationList as NotificationListService;
|
||||||
use App\Services\Logic\User\Console\NotificationRead as NotificationReadService;
|
use App\Services\Logic\User\Console\NotificationRead as NotificationReadService;
|
||||||
use App\Services\Logic\User\Console\NotifyStats as NotifyStatsService;
|
use App\Services\Logic\User\Console\NotifyStats as NotifyStatsService;
|
||||||
|
@ -29,8 +29,11 @@ class AccountInfo extends LogicService
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'id' => $account->id,
|
'id' => $account->id,
|
||||||
'phone' => $account->phone,
|
|
||||||
'email' => $account->email,
|
'email' => $account->email,
|
||||||
|
'phone' => $account->phone,
|
||||||
|
'password' => $account->password,
|
||||||
|
'create_time' => $account->create_time,
|
||||||
|
'update_time' => $account->update_time,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user