d2d.emegrendeles.hu/app/Enums/DbStatusFieldEnum.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

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';
}