Ext.php 377 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace app\service\controller;
  3. use think\cache\driver\Redis;
  4. use think\Request;
  5. /**
  6. * 客服系统 Event 接口
  7. */
  8. class Ext extends Common
  9. {
  10. public function __construct(Request $request = null)
  11. {
  12. parent::__construct($request);
  13. // 验证token.
  14. $this->verifyToken();
  15. }
  16. public function allConversation()
  17. {
  18. }
  19. }