Resolve "Resq - September 10 release" #1414

Merged
jankstudio merged 67 commits from 485-resq-september-10-release into master 2020-10-12 14:43:29 +00:00
Showing only changes of commit 73dcdb0b99 - Show all commits

View file

@ -0,0 +1,14 @@
<?php
namespace App\Ramcar;
class WillingToWaitContent extends NameValue
{
const WILLING_TO_WAIT = 'willing_to_wait';
const NOT_WILLING_TO_WAIT = 'not_willing_to_wait';
const COLLECTION = [
'willing_to_wait' => 'Willing to Wait',
'not_willing_to_wait' => 'Not Willing to Wait',
];
}