You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperf-gateway/app/JsonRpc/UserExternalServiceInterfac...

14 lines
245 B
PHTML

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