phpvms/app/Models/Enums/AircraftState.php
2018-03-08 08:51:36 -06:00

21 lines
399 B
PHP

<?php
namespace App\Models\Enums;
/**
* Class AircraftState
* @package App\Models\Enums
*/
class AircraftState extends Enum
{
public const PARKED = 0;
public const IN_USE = 1;
public const IN_AIR = 2;
public static $labels = [
AircraftState::PARKED => 'On Ground',
AircraftState::IN_USE => 'In Use',
AircraftState::IN_AIR => 'In Air',
];
}