cmtracker/src/Enums/CaseLevel.php

13 lines
173 B
PHP
Raw Normal View History

2024-11-28 11:39:47 -05:00
<?php
namespace App\Enums;
enum CaseLevel: int
2024-11-28 11:39:47 -05:00
{
case PARAPROFESSIONAL = 0;
case BACHELOR = 1;
case MASTER = 2;
case DOCTORATE = 3;
case ADMIN = 99;
2024-11-28 11:39:47 -05:00
}