Major refactoring for PIREP statuses and states to accomodate ACARS/route data
This commit is contained in:
22
app/Models/Enums/PirepSource.php
Normal file
22
app/Models/Enums/PirepSource.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by IntelliJ IDEA.
|
||||
* User: nshahzad
|
||||
* Date: 12/19/17
|
||||
* Time: 8:13 PM
|
||||
*/
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
|
||||
class PirepSource extends EnumBase
|
||||
{
|
||||
const MANUAL = 0;
|
||||
const ACARS = 1;
|
||||
|
||||
protected static $labels = [
|
||||
PirepSource::MANUAL => 'Manual',
|
||||
PirepSource::ACARS => 'ACARS',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user