From e27e902e49ed5b2d738ada899428c0750f93bbf3 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Fri, 9 Mar 2018 23:14:07 +0800 Subject: [PATCH] Add post service types #UAT --- src/Ramcar/ServiceType.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Ramcar/ServiceType.php b/src/Ramcar/ServiceType.php index 0a510f13..28c68d98 100644 --- a/src/Ramcar/ServiceType.php +++ b/src/Ramcar/ServiceType.php @@ -7,6 +7,8 @@ class ServiceType extends NameValue const BATTERY_REPLACEMENT_NEW = 'battery_new'; const BATTERY_REPLACEMENT_WARRANTY = 'battery_warranty'; const JUMPSTART_TROUBLESHOOT = 'jumpstart_troubleshoot'; + const POST_RECHARGED = 'post_recharged'; + const POST_REPLACEMENT = 'post_replacement'; const TIRE_REPAIR = 'tire'; const OVERHEAT_ASSITANCE = 'overheat'; const EMERGENCY_REFUEL = 'fuel'; @@ -15,6 +17,8 @@ class ServiceType extends NameValue 'battery_new' => 'Battery Replacement (New)', 'battery_warranty' => 'Battery Replacement (Under Warranty)', 'jumpstart_troubleshoot' => 'General Service', + 'post_recharged' => 'Post - Recharged', + 'post_replacement' => 'Post - Replacement', 'tire' => 'Tire Repair', 'overheat' => 'Overheat Assistance', 'fuel' => 'Emergency Refuel',