phpvms/app/Models/Enums/PirepSource.php

20 lines
331 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
*/
class PirepSource extends Enum
{
public const MANUAL = 0;
2018-08-27 00:40:04 +08:00
public const ACARS = 1;
protected static $labels = [
2018-08-27 00:40:04 +08:00
self::MANUAL => 'pireps.source_types.manual',
self::ACARS => 'pireps.source_types.acars',
];
}