phpvms/app/Models/Enums/AircraftState.php

19 lines
328 B
PHP
Raw Normal View History

<?php
namespace App\Models\Enums;
use App\Contracts\Enum;
2018-03-19 10:24:41 +08:00
class AircraftState extends Enum
{
public const PARKED = 0;
public const IN_USE = 1;
public const IN_AIR = 2;
public static $labels = [
2018-08-27 00:40:04 +08:00
self::PARKED => 'On Ground',
self::IN_USE => 'In Use',
self::IN_AIR => 'In Air',
];
}