Code Duplication    Length = 13-14 lines in 2 locations

src/Menu/Presenters/SidebarMenuPresenter.php 2 locations

@@ 20-33 (lines=14) @@
17
    /**
18
     * {@inheritdoc}
19
     */
20
    public function getMenuWithDropDownWrapper($item)
21
    {
22
        return '
23
      		<li class="treeview' . $this->getActiveStateOnChild($item, ' active') . '">
24
                <a href="#">
25
                    ' . $item->getIcon() . '
26
                    <span>' . $item->title . '</span>
27
                    <i class="fa fa-angle-left pull-right"></i>
28
                </a>
29
                <ul class="treeview-menu">
30
                    ' . $this->getChildMenuItems($item) . '
31
                </ul>
32
            </li>';
33
    }
34
35
    /**
36
     * {@inheritdoc }.
@@ 46-58 (lines=13) @@
43
    /**
44
     * {@inheritdoc }.
45
     */
46
    public function getMultiLevelDropdownWrapper($item)
47
    {
48
        return '<li class="'.$this->getActiveStateOnChild($item, ' active').'">
49
		          <a href="#">
50
					'.$item->getIcon().' '.$item->title.'
51
			      	<i class="fa fa-angle-left pull-right"></i>
52
			      </a>
53
			      <ul class="treeview-menu">
54
			      	'.$this->getChildMenuItems($item).'
55
			      </ul>
56
		      	</li>'
57
        .PHP_EOL;
58
    }
59
}
60