From a0d611264d1812e256e6d649d50a3e3aa339ed1f Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Mon, 28 Jan 2019 01:07:45 +0800 Subject: [PATCH] Add queue ticket types #175 --- src/Ramcar/TicketType.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Ramcar/TicketType.php b/src/Ramcar/TicketType.php index 3edc9c89..400b7a55 100644 --- a/src/Ramcar/TicketType.php +++ b/src/Ramcar/TicketType.php @@ -12,6 +12,9 @@ class TicketType extends NameValue const FOR_FOLLOW_UP = 'for_follow_up'; const RESQ_INQUIRY = 'resq_inquiry'; + const BATTERY_QUEUE = 'battery_queue'; + const RESQ_QUEUE = 'resq_queue'; + const COLLECTION = [ 'complaint' => 'Complaint', 'inquiry' => 'Inquiry', @@ -20,5 +23,7 @@ class TicketType extends NameValue 'other' => 'Other', 'for_follow_up' => 'For follow-up', 'resq_inquiry' => 'RESQ Inquiry', + 'battery_queue' => 'Battery Queue (XFER)', + 'resq_queue' => 'Resq Queue (XFER)', ]; }