18 lines
290 B
PHP
18 lines
290 B
PHP
<?php
|
|
|
|
namespace app\enum\gateway;
|
|
|
|
|
|
/**
|
|
* Ws事件组类型
|
|
*/
|
|
enum WsEventEnum: string
|
|
{
|
|
case Login = 'login';
|
|
case Login_SUCCESS = 'login_success';
|
|
case Lock_Client = 'lock_client';
|
|
case Client_quit_room = 'client_quit_room';
|
|
case Notification = 'notification';
|
|
|
|
}
|