phpvms/app/Models/Enums/AircraftState.php
2018-03-19 20:50:40 -05:00

23 lines
416 B
PHP

<?php
namespace App\Models\Enums;
use App\Interfaces\Enum;
/**
* 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',
];
}