hyperf-chat/app/Constant/RobotConstant.php

19 lines
245 B
PHP
Raw Normal View History

2021-07-25 22:57:41 +08:00
<?php
2021-09-11 12:41:28 +08:00
declare(strict_types=1);
2021-07-25 22:57:41 +08:00
2022-01-22 20:08:19 +08:00
namespace App\Constant;
2021-07-25 22:57:41 +08:00
/**
* 定义系统机器人ID
*
* @package App\Constants
*/
class RobotConstant
{
// 登录机器人
const LOGIN_ROBOT = 1;
2021-09-12 16:23:43 +08:00
// 聊天机器人
const TALK_ROBOT = 2;
2021-07-25 22:57:41 +08:00
}