fix: MemberCase

ReferralType
* Convert ReferralType in class to an Enum
This commit is contained in:
2025-01-21 14:24:11 -05:00
parent 82ee30a724
commit 6d8fbd5bb8
3 changed files with 25 additions and 10 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace App\Enums\Case;
enum ReferralType: string
{
case DCS = 'DCS';
case PO = 'PO';
}