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

11 lines
147 B
PHP

<?php
namespace App\Service\Enums;
enum Status: string
{
case PLANED = 'zaplanowany';
case NEW = 'nowy';
case DEADLINE = 'termin';
}