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