1 | <?php |
||
9 | final class Symfony2EventDispatcherSubscriber implements EventSubscriber |
||
10 | { |
||
11 | /** |
||
12 | * @var EventDispatcher |
||
13 | */ |
||
14 | private $eventDispatcher; |
||
15 | |||
16 | /** |
||
17 | */ |
||
18 | public function __construct(EventDispatcher $eventDispatcher) |
||
22 | |||
23 | /** |
||
24 | * @param int $eventHook |
||
25 | * @param EventSourcedEntity $eventSourcedEntity |
||
26 | * @param object $event |
||
27 | */ |
||
28 | public function handle($eventHook, EventSourcedEntity $eventSourcedEntity, $event) |
||
32 | } |
||
33 |