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

classes/template/TemplateHandler.class.php 2 locations

@@ 981-984 (lines=4) @@
978
		if($m[7])
979
		{
980
			$m[7] = substr($m[7], 1);
981
			if(!$m[7])
982
			{
983
				return '<?php ' . $this->_replaceVar($m[8]) . '{ ?>' . $m[9];
984
			}
985
			if(!preg_match('/^(?:((?:end)?(?:if|switch|for(?:each)?|while)|end)|(else(?:if)?)|(break@)?(case|default)|(break))$/', $m[7], $mm))
986
			{
987
				return '';
@@ 1008-1011 (lines=4) @@
1005
				}
1006
				return '<?php ' . $this->_replaceVar($precheck . $m[7] . $m[8]) . '{ ?>' . $m[9];
1007
			}
1008
			if($mm[2])
1009
			{
1010
				return "<?php }{$m[7]}" . $this->_replaceVar($m[8]) . "{ ?>" . $m[9];
1011
			}
1012
			if($mm[4])
1013
			{
1014
				return "<?php " . ($mm[3] ? 'break;' : '') . "{$m[7]} " . trim($m[8], '()') . ": ?>" . $m[9];