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

system/helpers/text_helper.php 1 location

@@ 497-503 (lines=7) @@
494
		}
495
496
		// Put our markers back
497
		if (count($unwrap) > 0)
498
		{
499
			foreach ($unwrap as $key => $val)
500
			{
501
				$output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
502
			}
503
		}
504
505
		return $output;
506
	}

system/libraries/Email.php 1 location

@@ 1245-1251 (lines=7) @@
1242
		}
1243
1244
		// Put our markers back
1245
		if (count($unwrap) > 0)
1246
		{
1247
			foreach ($unwrap as $key => $val)
1248
			{
1249
				$output = str_replace('{{unwrapped'.$key.'}}', $val, $output);
1250
			}
1251
		}
1252
1253
		return $output;
1254
	}