23 lines
367 B
PHP
23 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
/**
|
|
* @method static static draft()
|
|
* @method static static active()
|
|
* @method static static archive()
|
|
* @method static static deleted()
|
|
*/
|
|
final class DbStatusFieldEnum extends Enum
|
|
{
|
|
const draft = 'draft';
|
|
|
|
const active = 'active';
|
|
|
|
const archive = 'archive';
|
|
|
|
const deleted = 'deleted';
|
|
}
|