mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
Update FansService.php
This commit is contained in:
parent
7f3cae056e
commit
d2aa8d0817
@ -54,13 +54,9 @@ class FansService extends Service
|
||||
* 获取粉丝信息
|
||||
* @param string $openid
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
public function get(string $openid): array
|
||||
{
|
||||
$user = WechatFans::mk()->where(['openid' => $openid])->find();
|
||||
return empty($user) ? [] : $user->toArray();
|
||||
return WechatFans::mk()->where(['openid' => $openid])->findOrEmpty()->toArray();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user