<?php
declare(strict_types=1);
namespace Klaravik\Enum;
use Spatie\Enum\Enum;
/**
* @method static self NOT_STARTED()
* @method static self ONGOING()
* @method static self FINISHED()
* @method static self FAILED()
*/
class AdvanceCreateHandledEnum extends Enum
{
protected static function labels()
{
return [
'NOT_STARTED' => 'Ej startad',
'ONGOING' => 'Pågående',
'FINISHED' => 'Klar',
'FAILED' => 'Fel',
];
}
}