hyperf-chat/app/Constants/TalkType.php

26 lines
308 B
PHP
Raw Normal View History

2021-07-05 21:52:44 +08:00
<?php
namespace App\Constants;
class TalkType
{
/**
* 私聊
*/
const PRIVATE_CHAT = 1;
/**
* 群聊
*/
const GROUP_CHAT = 2;
public static function getTypes()
{
return [
self::PRIVATE_CHAT,
self::GROUP_CHAT
];
}
}