hyperf-gateway/app/JsonRpc/UserExternalServiceInterface.php
2022-11-07 16:38:48 +08:00

14 lines
243 B
PHP

<?php
namespace App\JsonRpc;
interface UserExternalServiceInterface
{
/**
* 通过微信授权新建用户
*
* @param string $openid
* @return array
*/
public function wechatNewUser(string $openid) : array;
}