1 | <?php |
||
20 | class SymfonyEventConverterSlot extends Slot |
||
21 | { |
||
22 | /** |
||
23 | * @var \Symfony\Component\EventDispatcher\EventDispatcherInterface |
||
24 | */ |
||
25 | private $eventDispatcher; |
||
26 | |||
27 | public function __construct(EventDispatcherInterface $eventDispatcher) |
||
31 | |||
32 | /** |
||
33 | * Receive the given $signal and react on it. |
||
34 | * |
||
35 | * @param Signal $signal |
||
36 | */ |
||
37 | public function receive(Signal $signal) |
||
41 | } |
||
42 |