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

system/libraries/Encryption.php 2 locations

@@ 563-572 (lines=10) @@
560
		// where 1 is returned for ARCFour instead of 0.
561
		if (($iv_size = mcrypt_enc_get_iv_size($params['handle'])) > 1)
562
		{
563
			if (mcrypt_enc_get_modes_name($params['handle']) !== 'ECB')
564
			{
565
				$iv = self::substr($data, 0, $iv_size);
566
				$data = self::substr($data, $iv_size);
567
			}
568
			else
569
			{
570
				// MCrypt is dumb and this is ignored, only size matters
571
				$iv = str_repeat("\x0", $iv_size);
572
			}
573
		}
574
		else
575
		{
@@ 616-624 (lines=9) @@
613
	 */
614
	protected function _openssl_decrypt($data, $params)
615
	{
616
		if ($iv_size = openssl_cipher_iv_length($params['handle']))
617
		{
618
			$iv = self::substr($data, 0, $iv_size);
619
			$data = self::substr($data, $iv_size);
620
		}
621
		else
622
		{
623
			$iv = NULL;
624
		}
625
626
		return empty($params['handle'])
627
			? FALSE