Add a 'paused' state (#1265)

* Add a 'paused' state

* Check paused status
This commit is contained in:
Nabeel S
2021-07-22 11:59:52 -04:00
committed by GitHub
parent f8ded4e410
commit f42a41286d
9 changed files with 20 additions and 4 deletions

View File

@@ -34,6 +34,7 @@ class PirepStatus extends Enum
public const ARRIVED = 'ONB'; // On block
public const CANCELLED = 'DX';
public const EMERG_DESCENT = 'EMG';
public const PAUSED = 'PSD';
protected static $labels = [
self::INITIATED => 'pireps.status.initialized',
@@ -59,5 +60,6 @@ class PirepStatus extends Enum
self::ARRIVED => 'pireps.status.arrived',
self::CANCELLED => 'pireps.status.cancelled',
self::EMERG_DESCENT => 'pireps.status.emerg_decent',
self::PAUSED => 'pireps.status.paused',
];
}