forked from hackzilla-project/TicketBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicketEvents.php
More file actions
25 lines (23 loc) · 716 Bytes
/
TicketEvents.php
File metadata and controls
25 lines (23 loc) · 716 Bytes
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
<?php
namespace Hackzilla\Bundle\TicketBundle;
final class TicketEvents
{
/**
* The hackzilla.ticket.create event is thrown each time an ticket is created
* in the system.
*
* The hackzilla.ticket.update event is thrown each time an ticket is updated
* in the system.
*
* The hackzilla.ticket.delete event is thrown each time an ticket is deleted
* in the system.
*
* The event listeners receives an
* Hackzilla\Bundle\TicketBundle\Event\TicketEvent instance.
*
* @var string
*/
const TICKET_CREATE = 'hackzilla.ticket.create';
const TICKET_UPDATE = 'hackzilla.ticket.update';
const TICKET_DELETE = 'hackzilla.ticket.delete';
}