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

widgets/content/content.class.php 1 location

@@ 363-373 (lines=11) @@
360
		$content_items = array();
361
		$args->mid_lists = array();
362
363
		foreach($args->rss_urls as $key => $rss)
364
		{
365
			$args->rss_url = $rss;
366
			$content_item = $this->_getRssItems($args);
367
			if(count($content_item) > 0)
368
			{
369
				$browser_title = $content_item[0]->getBrowserTitle();
370
				$args->mid_lists[] = $browser_title;
371
				$content_items[] = $content_item;
372
			}
373
		}
374
		// If it is not a tab type
375
		if($args->tab_type == 'none' || $args->tab_type == '')
376
		{

widgets/mcontent/mcontent.class.php 1 location

@@ 330-340 (lines=11) @@
327
		$content_items = array();
328
		$args->mid_lists = array();
329
330
		foreach($args->rss_urls as $key => $rss)
331
		{
332
			$args->rss_url = $rss;
333
			$content_item = $this->_getRssItems($args);
334
			if(count($content_item) > 0)
335
			{
336
				$browser_title = $content_item[0]->getBrowserTitle();
337
				$args->mid_lists[] = $browser_title;
338
				$content_items[] = $content_item;
339
			}
340
		}
341
342
		if($args->tab_type == 'none' || $args->tab_type == '')
343
		{