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