2017-12-20 10:19:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace 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;
|
|
|
|
public const ACARS = 1;
|
2017-12-20 10:19:36 +08:00
|
|
|
|
|
|
|
protected static $labels = [
|
|
|
|
PirepSource::MANUAL => 'Manual',
|
|
|
|
PirepSource::ACARS => 'ACARS',
|
|
|
|
];
|
|
|
|
}
|