Code Duplication    Length = 9-9 lines in 3 locations

app/Theme/ColorsTheme.php 1 location

@@ 49-57 (lines=9) @@
46
	 *
47
	 * @return string
48
	 */
49
	protected function formatSecondaryMenu() {
50
		return
51
			'<ul class="secondary-menu">' .
52
			implode('', $this->secondaryMenu()) .
53
			'<li>' .
54
			$this->formQuickSearch() .
55
			'</li>' .
56
			'</ul>';
57
	}
58
59
	/**
60
	 * Create the contents of the <header> tag.

app/Theme/FabTheme.php 1 location

@@ 51-59 (lines=9) @@
48
	 *
49
	 * @return string
50
	 */
51
	protected function formatSecondaryMenu() {
52
		return
53
			'<ul class="secondary-menu">' .
54
			implode('', $this->secondaryMenu()) .
55
			'<li>' .
56
			$this->formQuickSearch() .
57
			'</li>' .
58
			'</ul>';
59
	}
60
61
	/**
62
	 * Create the contents of the <header> tag.

app/Theme/MinimalTheme.php 1 location

@@ 60-68 (lines=9) @@
57
	 *
58
	 * @return string
59
	 */
60
	protected function formatSecondaryMenu() {
61
		return
62
			'<ul class="secondary-menu">' .
63
			implode('', $this->secondaryMenu()) .
64
			'<li>' .
65
			$this->formQuickSearch() .
66
			'</li>' .
67
			'</ul>';
68
	}
69
70
	/**
71
	 * Create the contents of the <header> tag.