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 = 2-2 lines in 2 locations

protected/extensions/bootstrap/components/Bootstrap.php 2 locations

@@ 225-226 (lines=2) @@
222
	public function registerPopover($selector = null, $options = array())
223
	{
224
		$this->registerTooltip(); // Popover requires the tooltip plugin
225
		if (!isset($options['selector']))
226
			$options['selector'] = $selector !== null ? $selector : 'a[rel=popover]';
227
		$this->registerPlugin(self::PLUGIN_POPOVER, 'body', $options);
228
	}
229
@@ 251-252 (lines=2) @@
248
	 */
249
	public function registerTooltip($selector = null, $options = array())
250
	{
251
		if (!isset($options['selector']))
252
			$options['selector'] = $selector !== null ? $selector : 'a[rel=tooltip]';
253
		$this->registerPlugin(self::PLUGIN_TOOLTIP, 'body', $options);
254
	}
255