Add CustomerNotWaitReason. #453
This commit is contained in:
parent
4857645e18
commit
117974d2cb
1 changed files with 16 additions and 0 deletions
16
src/Ramcar/CustomerNotWaitReason.php
Normal file
16
src/Ramcar/CustomerNotWaitReason.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Ramcar;
|
||||
|
||||
class CustomerNotWaitReason extends NameValue
|
||||
{
|
||||
const EMERGENCY = 'emergency';
|
||||
const USE_VEHICLE_NOW = 'use_vehicle_now';
|
||||
const WITH_APPOINTMENT = 'with_appointment';
|
||||
|
||||
const COLLECTION = [
|
||||
'emergency' => 'Emergency',
|
||||
'use_vehicle_now' => 'Need to Use Vehicle Now',
|
||||
'with_appointment' => 'With Appointment',
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue