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

@@ 941-944 (lines=4) @@
938
		if($m[7])
939
		{
940
			$m[7] = substr($m[7], 1);
941
			if(!$m[7])
942
			{
943
				return '<?php ' . $this->_replaceVar($m[8]) . '{ ?>' . $m[9];
944
			}
945
			if(!preg_match('/^(?:((?:end)?(?:if|switch|for(?:each)?|while)|end)|(else(?:if)?)|(break@)?(case|default)|(break))$/', $m[7], $mm))
946
			{
947
				return '';
@@ 968-971 (lines=4) @@
965
				}
966
				return '<?php ' . $this->_replaceVar($precheck . $m[7] . $m[8]) . '{ ?>' . $m[9];
967
			}
968
			if($mm[2])
969
			{
970
				return "<?php }{$m[7]}" . $this->_replaceVar($m[8]) . "{ ?>" . $m[9];
971
			}
972
			if($mm[4])
973
			{
974
				return "<?php " . ($mm[3] ? 'break;' : '') . "{$m[7]} " . trim($m[8], '()') . ": ?>" . $m[9];