init project
This commit is contained in:
17
app/Enums/SexEnum.php
Normal file
17
app/Enums/SexEnum.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
use BenSampo\Enum\Enum;
|
||||
|
||||
/**
|
||||
* @method static static OptionOne()
|
||||
* @method static static OptionTwo()
|
||||
* @method static static OptionThree()
|
||||
*/
|
||||
final class SexEnum extends Enum
|
||||
{
|
||||
const M = 'Male';
|
||||
const F = 'Female';
|
||||
const B = 'Both Male & Female';
|
||||
}
|
||||
Reference in New Issue
Block a user