GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 7-8 lines in 2 locations

src/Components/NavbarHorizontal.php 2 locations

@@ 244-251 (lines=8) @@
241
	 *
242
	 * @return String
243
	 */
244
	protected function getLogo( \DOMElement $domElement = null ) {
245
246
		$logo = new Logo( $this->getSkinTemplate(), $domElement, $this->getIndent() );
247
		$logo->addClasses( 'navbar-brand' );
248
249
//        return \Html::rawElement( 'li', array(), $logo->getHtml() );
250
		return $logo->getHtml();
251
	}
252
253
	/**
254
	 * Creates a list of navigational links usually found in the sidebar
@@ 319-325 (lines=7) @@
316
	 *
317
	 * @return string
318
	 */
319
	protected function getSearchBar( \DOMElement $domElement = null ) {
320
321
		$search = new SearchBar( $this->getSkinTemplate(), $domElement, $this->getIndent() );
322
		$search->addClasses( 'navbar-form' );
323
324
		return $search->getHtml();
325
	}
326
327
	/**
328
	 * Creates a user's personal tools and the newtalk notifier