17 lines
267 B
PHP
17 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
/**
|
|
* @method static static OptionOne()
|
|
* @method static static OptionTwo()
|
|
* @method static static OptionThree()
|
|
*/
|
|
final class RecordStatusEnum extends Enum
|
|
{
|
|
const ACTIVE = 1;
|
|
const DELETE = 0;
|
|
}
|