Files
gorilla/app/Service/Enums/Priority.php
2026-01-12 12:37:16 +01:00

11 lines
152 B
PHP

<?php
namespace App\Service\Enums;
enum Priority: string
{
case CRITICAL = 'krytyczny';
case HIGH = 'wysoki';
case NORMAL = 'normalny';
}