| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function twig(string $template, array $params = []): void |
||
| 33 | { |
||
| 34 | $this->container()->get('debugbar')['time']->startMeasure('Controller', 'Controller'); |
||
| 35 | $this->container()->get('debugbar')->addCollector(new ConfigCollector($params)); |
||
| 36 | $this->container()->get('debugbar')->addCollector(new MessagesCollector('Twig')); |
||
| 37 | $this->container()->get('debugbar')['Twig']->info($template); |
||
| 38 | |||
| 39 | parent::twig($template, $params); |
||
| 40 | } |
||
| 42 |