21 lines
433 B
PHP
Executable File
21 lines
433 B
PHP
Executable File
<?php
|
|
namespace support\OpenImSdk\Enum;
|
|
enum appMangerLevel : int{
|
|
use BaseEnum;
|
|
/*系统通知号;*/
|
|
case Notify=3;
|
|
/*机器人账号;*/
|
|
case Bot=4;
|
|
|
|
/**
|
|
* 获取所有状态映射数组
|
|
*/
|
|
public static function toArray(): array
|
|
{
|
|
return [
|
|
self::Notify->value => __('系统通知号'),
|
|
self::Bot->value => __('机器人账号'),
|
|
];
|
|
}
|
|
|
|
}; |