17 lines
343 B
PHP
17 lines
343 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum MissionViolationType: int
|
|
{
|
|
case KHOROJ_BEDONE_MOGAVEZ = 1;
|
|
case ADAM_TAHAROK = 2;
|
|
|
|
public function label(): string
|
|
{
|
|
return match ($this) {
|
|
self::KHOROJ_BEDONE_MOGAVEZ => "خروج بدون مجوز",
|
|
self::ADAM_TAHAROK => "عدم تحرک",
|
|
};
|
|
}
|
|
} |