1 | <?php |
||
14 | class ExtendableEnvelopeConsumer implements SimpleBusSerializedEnvelopeConsumer |
||
15 | { |
||
16 | /** |
||
17 | * @var MessageInEnvelopeSerializer |
||
18 | */ |
||
19 | private $messageInEnvelopeSerializer; |
||
20 | |||
21 | /** |
||
22 | * @var MessageBus |
||
23 | */ |
||
24 | private $messageBus; |
||
25 | |||
26 | /** |
||
27 | * @var EventDispatcherInterface |
||
28 | */ |
||
29 | private $dispathcer; |
||
30 | |||
31 | /** |
||
32 | * @param MessageInEnvelopeSerializer $messageInEnvelopeSerializer |
||
33 | * @param MessageBus $messageBus |
||
34 | * @param EventDispatcherInterface $dispathcer |
||
35 | */ |
||
36 | 1 | public function __construct( |
|
45 | |||
46 | /** |
||
47 | * @param string $serializedEnvelope |
||
48 | */ |
||
49 | public function consume($serializedEnvelope) |
||
60 | } |
||
61 |