store-manage/app/Enums/QuestionCate.php

33 lines
449 B
PHP

<?php
namespace App\Enums;
/**
* 考题类型
*/
enum QuestionCate: int
{
/**
* 单选
*/
case Radio = 1;
/**
* 多选
*/
case Checkbox = 2;
public static function options()
{
return [
self::Radio->value => '单选',
self::Checkbox->value => '多选',
];
}
public function text()
{
return data_get(self::options(), $this->value);
}
}