12 lines
185 B
PHP
12 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
enum StudyLevelStatus: int
|
|
{
|
|
case Pending = 0;
|
|
case StudyArrived = 1 << 1;
|
|
case StudyLocked = 1 << 2;
|
|
case StudyUnlocked = 1 << 3;
|
|
}
|