123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Notice.php UTF-8
- * 消息
- *
- * @date : 2018/1/19 15:58
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : wuyonghong <wyh@huosdk.com>
- * @version : HUOSDK 8.0
- */
- namespace huo\controller\notice;
- use huo\controller\common\Base;
- use huo\controller\request\Channel;
- use huo\controller\request\Device;
- use huo\controller\request\Game as GameRq;
- class Notice extends Base {
- /**
- * @param GameRq $game_rq
- * @param Channel $channel
- * @param Device $device
- *
- * @return string
- */
- public function getNotice(GameRq $game_rq, Channel $channel, Device $device) {
- return '';
- }
- }
|