Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
54 | public function getMenuWithDropDownWrapper(MenuItemContract $item): ?string |
||
55 | { |
||
56 | return '<li class="dropdown dropdown-primary"> |
||
57 | <a class="dropdown-toggle" href="#">' . $item->title . '</a> |
||
58 | <ul class="menu"> |
||
59 | ' . $this->getChildMenuItems($item) . ' |
||
60 | </ul> |
||
61 | </li>' . PHP_EOL; |
||
62 | } |
||
77 |