phpvms/app/Models/Enums/PirepSource.php

21 lines
375 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-05-22 00:55:40 +08:00
PirepSource::MANUAL => 'pireps.source_types.manual',
PirepSource::ACARS => 'pireps.source_types.acars',
];
}