1 | <?php |
||
19 | abstract class AbstractHelper |
||
20 | { |
||
21 | /** |
||
22 | * @var EventDispatcherInterface |
||
23 | */ |
||
24 | private $eventDispatcher; |
||
25 | |||
26 | /** |
||
27 | * @param EventDispatcherInterface $eventDispatcher |
||
28 | */ |
||
29 | 276 | public function __construct(EventDispatcherInterface $eventDispatcher) |
|
33 | |||
34 | /** |
||
35 | * @return EventDispatcherInterface |
||
36 | */ |
||
37 | 264 | public function getEventDispatcher() |
|
41 | |||
42 | /** |
||
43 | * @param EventDispatcherInterface $eventDispatcher |
||
44 | */ |
||
45 | 276 | public function setEventDispatcher($eventDispatcher) |
|
49 | } |
||
50 |