WIP: "CMB - notifications when JO is cancelled or rejected" #1311

Draft
korina.cordero wants to merge 5 commits from 433-cmb-notifications-when-jo-is-cancelled-or-rejected into 424-cmb-release
Showing only changes of commit 101565a251 - Show all commits

View file

@ -0,0 +1,14 @@
<?php
namespace App\Ramcar;
class NotificationType extends NameValue
{
const CANCELLED = 'cancelled';
const REJECTED = 'rejected';
const COLLECTION = [
'cancelled' => 'Cancelled',
'rejected' => 'Rejected',
];
}