Fix constants in jostatus

This commit is contained in:
Ramon Gutierrez 2018-01-16 22:20:46 +08:00
parent 85bb0703cf
commit 73ccc1ca6b

View file

@ -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',