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

modules/autoinstall/autoinstall.admin.model.php 2 locations

@@ 368-372 (lines=5) @@
365
		$directModuleInstall = TRUE;
366
		$arrUnwritableDir = array();
367
		$output = $this->isWritableDir($package->path);
368
		if($output->toBool()==FALSE)
369
		{
370
			$directModuleInstall = FALSE;
371
			$arrUnwritableDir[] = $output->get('path');
372
		}
373
374
		foreach($package->depends as $dep)
375
		{
@@ 377-381 (lines=5) @@
374
		foreach($package->depends as $dep)
375
		{
376
			$output = $this->isWritableDir($dep->path);
377
			if($output->toBool()==FALSE)
378
			{
379
				$directModuleInstall = FALSE;
380
				$arrUnwritableDir[] = $output->get('path');
381
			}
382
		}
383
384
		if($directModuleInstall==FALSE)