From 89d694901544804d2fdaf16be8bcfc868011e2fa Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Sun, 23 Sep 2018 15:53:38 +0800 Subject: [PATCH] Add resq inquiry ticket type #162 --- src/Ramcar/TicketType.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ramcar/TicketType.php b/src/Ramcar/TicketType.php index 0e1fd865..3edc9c89 100644 --- a/src/Ramcar/TicketType.php +++ b/src/Ramcar/TicketType.php @@ -10,6 +10,7 @@ class TicketType extends NameValue const BILLING = 'billing'; const OTHER = 'other'; const FOR_FOLLOW_UP = 'for_follow_up'; + const RESQ_INQUIRY = 'resq_inquiry'; const COLLECTION = [ 'complaint' => 'Complaint', @@ -18,6 +19,6 @@ class TicketType extends NameValue 'billing' => 'Billing', 'other' => 'Other', 'for_follow_up' => 'For follow-up', - + 'resq_inquiry' => 'RESQ Inquiry', ]; }