1 | <?php |
||
8 | class EnvelopeEvent extends \Symfony\Component\EventDispatcher\Event |
||
|
|||
9 | { |
||
10 | protected $envelope; |
||
11 | protected $queue; |
||
12 | |||
13 | /** |
||
14 | * @param Envelope $envelope |
||
15 | * @param Queue $queue |
||
16 | */ |
||
17 | 17 | public function __construct(Envelope $envelope, Queue $queue) |
|
22 | |||
23 | /** |
||
24 | * @return Envelope |
||
25 | */ |
||
26 | 4 | public function getEnvelope() |
|
30 | |||
31 | /** |
||
32 | * @return Queue |
||
33 | */ |
||
34 | 1 | public function getQueue() |
|
38 | } |
||
39 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.