1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-09-17 21:29:29 +08:00

33 lines
628 B
PHP

<?php
namespace App\Services\Logic\User\Console;
use App\Models\User as UserModel;
use App\Repos\Account as AccountRepo;
use App\Services\Logic\Service;
class AccountInfo extends Service
{
public function handle()
{
$user = $this->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,
];
}
}