hyperf-chat/app/Constant/RedisSubscribeChan.php

13 lines
178 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
2022-01-22 20:08:19 +08:00
namespace App\Constant;
2021-07-08 19:09:06 +08:00
class RedisSubscribeChan
{
2021-07-08 19:30:03 +08:00
/**
* Websocket 消息推送渠道
*/
2021-07-08 19:09:06 +08:00
const WEBSOCKET_CHAN = 'websocket';
}