Fix constants in jostatus
This commit is contained in:
parent
85bb0703cf
commit
73ccc1ca6b
1 changed files with 5 additions and 5 deletions
|
|
@ -4,11 +4,11 @@ namespace App\Ramcar;
|
|||
|
||||
class JOStatus
|
||||
{
|
||||
const PENDING => 'pending';
|
||||
const ASSIGNED => 'assigned';
|
||||
const IN_PROGRESS => 'in_progress';
|
||||
const CANCELLED => 'cancelled';
|
||||
const FULFILLED => 'fulfilled';
|
||||
const PENDING = 'pending';
|
||||
const ASSIGNED = 'assigned';
|
||||
const IN_PROGRESS = 'in_progress';
|
||||
const CANCELLED = 'cancelled';
|
||||
const FULFILLED = 'fulfilled';
|
||||
|
||||
const COLLECTION = [
|
||||
'pending' => 'Pending',
|
||||
|
|
|
|||
Loading…
Reference in a new issue