Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function twig(string $template, array $params = []): void |
||
38 | { |
||
39 | $this->container()->get('debugbar')->addCollector(new ConfigCollector($params)); |
||
40 | $this->container()->get('debugbar')->addCollector(new MessagesCollector('Twig')); |
||
41 | $this->container()->get('debugbar')['Twig']->info($template); |
||
42 | |||
43 | parent::twig($template, $params); // TODO: Change the autogenerated stub |
||
44 | } |
||
45 | } |
||
46 |