init project
This commit is contained in:
16
app/Enums/RecordStatusEnum.php
Normal file
16
app/Enums/RecordStatusEnum.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user