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