phpvms/app/Models/Enums/PirepSource.php

21 lines
377 B
PHP
Raw Normal View History

<?php
namespace App\Models\Enums;
2018-03-19 10:24:41 +08:00
use App\Interfaces\Enum;
/**
* Class PirepSource
* @package App\Models\Enums
*/
class PirepSource extends Enum
{
public const MANUAL = 0;
public const ACARS = 1;
protected static $labels = [
2018-04-02 10:44:04 +08:00
PirepSource::MANUAL => 'system.pireps.source.manual',
PirepSource::ACARS => 'system.pireps.source.acars',
];
}