phpvms/app/Models/Enums/PirepSource.php

15 lines
250 B
PHP
Raw Normal View History

<?php
namespace App\Models\Enums;
class PirepSource extends Enum
{
public const MANUAL = 0;
public const ACARS = 1;
protected static $labels = [
PirepSource::MANUAL => 'Manual',
PirepSource::ACARS => 'ACARS',
];
}