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

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