resq/src/Ramcar/NotificationType.php
2020-06-30 11:04:38 +00:00

14 lines
263 B
PHP

<?php
namespace App\Ramcar;
class NotificationType extends NameValue
{
const CANCELLATION = 'cancellation';
const REJECTION = 'rejection';
const COLLECTION = [
'cancellation' => 'Cancellation',
'rejection' => 'Rejection',
];
}