| Conditions | 3 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.7898 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | 13 | public function bootstrap(PluginApplicationInterface $app): void |
|
| 33 | { |
||
| 34 | 13 | EventManager::instance()->on(new Event\ExtensionsListener()); |
|
| 35 | 13 | EventManager::instance()->on(new Event\TokenParsersListener()); |
|
| 36 | |||
| 37 | 13 | if (Configure::read('debug') && CorePlugin::isLoaded('DebugKit')) { |
|
| 38 | Configure::write('DebugKit.panels', array_merge( |
||
| 39 | (array)Configure::read('DebugKit.panels'), |
||
| 40 | [ |
||
| 41 | 'WyriHaximus/TwigView.Twig', |
||
| 42 | ] |
||
| 43 | )); |
||
| 44 | EventManager::instance()->on(new Event\ProfilerListener()); |
||
| 45 | } |
||
| 46 | 13 | } |
|
| 47 | } |
||
| 48 |