13 lines
178 B
PHP
13 lines
178 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Constant;
|
||
|
|
||
|
class RedisSubscribeChan
|
||
|
{
|
||
|
/**
|
||
|
* Websocket 消息推送渠道
|
||
|
*/
|
||
|
const WEBSOCKET_CHAN = 'websocket';
|
||
|
}
|