1: <?php
2:
3: /**
4: * Avisota newsletter and mailing system
5: *
6: * PHP Version 5.3
7: *
8: * @copyright bit3 UG 2013
9: * @author Tristan Lins <tristan.lins@bit3.de>
10: * @package avisota-core
11: * @license LGPL-3.0+
12: * @link http://avisota.org
13: */
14:
15: namespace Avisota\Event;
16:
17: use Avisota\Message\MessageInterface;
18: use Avisota\Queue\EventEmittingQueueInterface;
19: use Symfony\Component\EventDispatcher\Event;
20:
21: /**
22: * Event triggered before an
23: * {@link http://avisota.github.io/core/class-Avisota.Queue.EventEmittingQueueInterface.html
24: * event emitting queue}
25: * send a message.
26: *
27: * @package avisota-core
28: */
29: class PreTransportMessageEvent extends AbstractTransportMessageEvent
30: {
31: }