ThirdH5ChatInterface.php 406 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Repositories\Contracts;
  3. /**
  4. *
  5. * @author lilin
  6. *
  7. */
  8. interface ThirdH5ChatInterface
  9. {
  10. const TYPENAME = '统一H5聊天';
  11. /**
  12. * 这里是说明
  13. *
  14. * @param string $uid 用户id
  15. * @param string $nickname 用户昵称
  16. * @param string $headUrl 用户头像地址
  17. */
  18. public function getChatUrl($uid, $nickname, $headUrl);
  19. }