Add enums
This commit is contained in:
11
src/Enums/JobType.php
Normal file
11
src/Enums/JobType.php
Normal 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';
|
||||
}
|
Reference in New Issue
Block a user