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