Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | trait ContainerAwareApplication |
||
12 | { |
||
13 | /** |
||
14 | * @return EventManager |
||
15 | * @see BaseApplication::getEventManager() |
||
16 | */ |
||
17 | abstract public function getEventManager(); |
||
18 | |||
19 | /** |
||
20 | * Get the ActionDispatcher. |
||
21 | * @return ActionDispatcher |
||
22 | * @see BaseApplication::getDispatcher() |
||
23 | */ |
||
24 | 1 | protected function getDispatcher() |
|
30 |