Notice.php 690 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Notice.php UTF-8
  4. * 消息
  5. *
  6. * @date : 2018/1/19 15:58
  7. *
  8. * @license 这不是一个自由软件,未经授权不许任何使用和传播。
  9. * @author : wuyonghong <wyh@huosdk.com>
  10. * @version : HUOSDK 8.0
  11. */
  12. namespace huo\controller\notice;
  13. use huo\controller\common\Base;
  14. use huo\controller\request\Channel;
  15. use huo\controller\request\Device;
  16. use huo\controller\request\Game as GameRq;
  17. class Notice extends Base {
  18. /**
  19. * @param GameRq $game_rq
  20. * @param Channel $channel
  21. * @param Device $device
  22. *
  23. * @return string
  24. */
  25. public function getNotice(GameRq $game_rq, Channel $channel, Device $device) {
  26. return '';
  27. }
  28. }