-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVidoomyNotificationEvents.php
55 lines (47 loc) · 1.46 KB
/
VidoomyNotificationEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace Vidoomy\NotificationBundle;
final class VidoomyNotificationEvents
{
/**
* Occurs when a Notification is created.
*
* @Event("Vidoomy\NotificationBundle\Event\CreatedNotificationEvent")
*/
const CREATED = 'vidoomy.notification.created';
/**
* Occurs when a Notification is assigned to a NotifiableEntity.
*
* @Event("Vidoomy\NotificationBundle\Event\AssignedNotificationEvent")
*/
const ASSIGNED = 'vidoomy.notification.assigned';
/**
* Occurs when a Notification is marked as seen.
*
* @Event("Vidoomy\NotificationBundle\Event\SeenNotificationEvent")
*/
const SEEN = 'vidoomy.notification.seen';
/**
* Occurs when a Notification is marked as unseen.
*
* @Event("Vidoomy\NotificationBundle\Event\UnseenNotificationEvent")
*/
const UNSEEN = 'vidoomy.notification.unseen';
/**
* Occurs when a Notification is modified.
*
* @Event("Vidoomy\NotificationBundle\Event\ModifiedNotificationEvent")
*/
const MODIFIED = 'vidoomy.notification.modified';
/**
* Occurs when a Notification is removed.
*
* @Event("Vidoomy\NotificationBundle\Event\RemovedNotificationEvent")
*/
const REMOVED = 'vidoomy.notification.removed';
/**
* Occurs when a Notification is deleted
*
* @Event("Vidoomy\NotificationBundle\Event\DeletedNotificationEvent")
*/
const DELETED = 'vidoomy.notification.delete';
}