Add NotificationType. #433
This commit is contained in:
parent
0b8b462f8f
commit
101565a251
1 changed files with 14 additions and 0 deletions
14
src/Ramcar/NotificationType.php
Normal file
14
src/Ramcar/NotificationType.php
Normal 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',
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue