Add enums

This commit is contained in:
2024-11-28 11:39:47 -05:00
parent 2656d93208
commit 1095a3c108
3 changed files with 33 additions and 0 deletions

11
src/Enums/JobType.php Normal file
View File

@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum JobType: string
{
case CASE_WORKER = 'CASE_WORKER';
case CASE_MANAGER = 'CASE_MANAGER';
case THERAPIST = 'THERAPIST';
case ADMIN = 'ADMIN';
}