Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function renderItem( |
||
35 | Environment $environment, |
||
36 | string $name, |
||
37 | string $template = '@EverlutionNavigation/bootstrap_navigation_item.html.twig' |
||
38 | ): string { |
||
39 | $item = $this->container->get($name); |
||
40 | |||
41 | return $environment->render( |
||
42 | $template, |
||
43 | [ |
||
44 | 'item' => $item, |
||
45 | 'helper' => $this->helper, |
||
46 | 'is_active' => $this->matcher->isCurrent($item), |
||
47 | ] |
||
62 |