hyperf-gateway/app/JsonRpc/UserExternalServiceInterface.php

14 lines
245 B
PHP
Raw Normal View History

2022-11-07 16:29:37 +08:00
<?php
namespace App\JsonRpc;
interface UserExternalServiceInterface
{
/**
* 通过微信授权新建用户
*
* @param string $open_id
* @return array
*/
public function wechatNewUser(string $open_id) : array;
}