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

system/libraries/Encryption.php 2 locations

@@ 406-414 (lines=9) @@
403
			? mcrypt_create_iv($iv_size, MCRYPT_DEV_URANDOM)
404
			: NULL;
405
406
		if (mcrypt_generic_init($params['handle'], $params['key'], $iv) < 0)
407
		{
408
			if ($params['handle'] !== $this->_handle)
409
			{
410
				mcrypt_module_close($params['handle']);
411
			}
412
413
			return FALSE;
414
		}
415
416
		// Use PKCS#7 padding in order to ensure compatibility with OpenSSL
417
		// and other implementations outside of PHP.
@@ 579-587 (lines=9) @@
576
			$iv = NULL;
577
		}
578
579
		if (mcrypt_generic_init($params['handle'], $params['key'], $iv) < 0)
580
		{
581
			if ($params['handle'] !== $this->_handle)
582
			{
583
				mcrypt_module_close($params['handle']);
584
			}
585
586
			return FALSE;
587
		}
588
589
		$data = mdecrypt_generic($params['handle'], $data);
590
		// Remove PKCS#7 padding, if necessary