phpvms/app/Models/Enums/PirepState.php

24 lines
708 B
PHP
Raw Normal View History

<?php
namespace App\Models\Enums;
class PirepState extends EnumBase {
const REJECTED = -1;
const IN_PROGRESS = 0;
const PENDING = 1;
const ACCEPTED = 2;
2018-01-03 23:49:32 +08:00
const CANCELLED = 3;
2018-01-04 00:30:12 +08:00
const DELETED = 4;
protected static $labels = [
2018-01-04 00:30:12 +08:00
PirepState::REJECTED => 'system.pireps.state.rejected',
PirepState::IN_PROGRESS => 'system.pireps.state.in_progress',
PirepState::PENDING => 'system.pireps.state.pending',
PirepState::ACCEPTED => 'system.pireps.state.accepted',
PirepState::CANCELLED => 'system.pireps.state.cancelled',
PirepState::DELETED => 'system.pireps.state.deleted',
];
}