12 lines
141 B
PHP
12 lines
141 B
PHP
<?php
|
|
|
|
namespace App\Domain\Study;
|
|
|
|
enum Priority: int
|
|
{
|
|
case Low = 0;
|
|
case Routine = 50;
|
|
case High = 75;
|
|
case Stat = 100;
|
|
}
|