src/Enum/AdvanceCreateHandledEnum.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Klaravik\Enum;
  4. use Spatie\Enum\Enum;
  5. /**
  6.  * @method static self NOT_STARTED()
  7.  * @method static self ONGOING()
  8.  * @method static self FINISHED()
  9.  * @method static self FAILED()
  10.  */
  11. class AdvanceCreateHandledEnum extends Enum
  12. {
  13.     protected static function labels()
  14.     {
  15.         return [
  16.             'NOT_STARTED' => 'Ej startad',
  17.             'ONGOING' => 'Pågående',
  18.             'FINISHED' => 'Klar',
  19.             'FAILED' => 'Fel',
  20.         ];
  21.     }
  22. }