Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class EventManager |
||
14 | { |
||
15 | /** |
||
16 | * @var \Symfony\Component\EventDispatcher\EventDispatcher |
||
17 | * @since 1.6 |
||
18 | */ |
||
19 | protected $eventDispatcher; |
||
20 | |||
21 | /** |
||
22 | * @since 1.6 |
||
23 | */ |
||
24 | public function __construct() |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return \Symfony\Component\EventDispatcher\EventDispatcher |
||
31 | * @since 1.6 |
||
32 | */ |
||
33 | public function getEventDispatcher() |
||
38 |