Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 1 | public function onBootstrap(EventInterface $e) |
|
39 | { |
||
40 | 1 | $application = $e->getApplication(); |
|
|
|||
41 | 1 | $eventManager = $application->getEventManager(); |
|
42 | 1 | $services = $application->getServiceManager(); |
|
43 | |||
44 | 1 | $services->get('Install/Listener/LanguageSetter') |
|
45 | 1 | ->attach($eventManager); |
|
46 | |||
47 | // start tracy debugging |
||
48 | 1 | $services->get('Tracy')->startDebug(); |
|
49 | } |
||
51 |