12345678910111213141516171819202122 |
- <?php
- namespace App\Repositories\Contracts;
- /**
- *
- * @author lilin
- *
- */
- interface ThirdH5ChatInterface
- {
- const TYPENAME = '统一H5聊天';
-
- /**
- * 这里是说明
- *
- * @param string $uid 用户id
- * @param string $nickname 用户昵称
- * @param string $headUrl 用户头像地址
- */
- public function getChatUrl($uid, $nickname, $headUrl);
- }
|