<?php
namespace App\Enums;
enum UserSex: string
{
case MAN = 'man';
case WOMAN = 'woman';
case OTHER = 'other';
case UNKNOWN = 'unknown';
}