Files
YwxAppThink/addon/wxchat/worker/enum/Target.php
T

20 lines
706 B
PHP

<?php
// +----------------------------------------------------------------------
// | YwxApp [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: ywxapp<admin@ywxapp.cn>
// +----------------------------------------------------------------------
declare (strict_types = 1);
namespace addon\wxchat\worker\enum;
// ==================== 聊天目标 ====================
enum Target: string {
case USER = 'single';
case GROUP = 'group';
case ROOM = 'room';
case SYSTEM = 'system';
}