|
@@ -80,7 +80,7 @@ class UserAdminService extends Service
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
*/
|
|
|
- public static function get(int $uuid, string $type): array
|
|
|
+ public static function get(int $uuid, string $type)
|
|
|
{
|
|
|
$map = ['id' => $uuid, 'deleted' => 0];
|
|
|
$user = DataUser::mk()->where($map)->findOrEmpty();
|
|
@@ -92,7 +92,7 @@ class UserAdminService extends Service
|
|
|
if (empty($state) || empty($access)) throw new Exception($message);
|
|
|
}
|
|
|
$user['token'] = ['token' => $access['token'], 'expire' => $access['time']];
|
|
|
- return $user->hidden(['deleted', 'password'])->toArray();
|
|
|
+ return $user->hidden(['deleted', 'password']);
|
|
|
}
|
|
|
|
|
|
/**
|