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