Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
39 | public function getMultiLevelDropdownWrapper($item) |
||
40 | { |
||
41 | return '<li class="dropdown' . $this->getActiveStateOnChild($item, ' active open') . '"> |
||
42 | <a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
||
43 | ' . $item->getIcon() . ' ' . $item->title . ' |
||
44 | <b class="caret pull-right caret-right"></b> |
||
45 | </a> |
||
46 | <ul class="dropdown-menu navmenu-nav"> |
||
47 | ' . $this->getChildMenuItems($item) . ' |
||
48 | </ul> |
||
49 | </li>' |
||
50 | . PHP_EOL; |
||
51 | } |
||
52 | } |
||
53 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.