From 73ccc1ca6b49e01847603d926e125d6af9b1c378 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Tue, 16 Jan 2018 22:20:46 +0800 Subject: [PATCH] Fix constants in jostatus --- src/Ramcar/JOStatus.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Ramcar/JOStatus.php b/src/Ramcar/JOStatus.php index 15c64f67..3b5440e3 100644 --- a/src/Ramcar/JOStatus.php +++ b/src/Ramcar/JOStatus.php @@ -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',