hyperf-chat/app/Constants/RedisSubscribeChan.php

13 lines
179 B
PHP
Raw Normal View History

2021-07-08 19:09:06 +08:00
<?php
2021-09-11 12:41:28 +08:00
declare(strict_types=1);
2021-07-08 19:09:06 +08:00
namespace App\Constants;
class RedisSubscribeChan
{
2021-07-08 19:30:03 +08:00
/**
* Websocket 消息推送渠道
*/
2021-07-08 19:09:06 +08:00
const WEBSOCKET_CHAN = 'websocket';
}