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/module/ModuleHandler.class.php 1 location

@@ 140-143 (lines=4) @@
137
		$print[] = '['.date('Y-m-d H:i:s').'] ' . $errorname . ' : ' . $errormassage;
138
		$backtrace_args = defined('DEBUG_BACKTRACE_IGNORE_ARGS') ? \DEBUG_BACKTRACE_IGNORE_ARGS : 0;
139
		$backtrace = debug_backtrace($backtrace_args);
140
		if(count($backtrace) > 1 && $backtrace[1]['function'] === 'xeErrorLog' && !$backtrace[1]['class'])
141
		{
142
			array_shift($backtrace);
143
		}
144
145
		foreach($backtrace as $key => $value)
146
		{

config/func.inc.php 1 location

@@ 891-894 (lines=4) @@
888
		$backtrace_args = defined('\DEBUG_BACKTRACE_IGNORE_ARGS') ? \DEBUG_BACKTRACE_IGNORE_ARGS : 0;
889
		$backtrace = debug_backtrace($backtrace_args);
890
891
		if(count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class'])
892
		{
893
			array_shift($backtrace);
894
		}
895
		foreach($backtrace as $val)
896
		{
897
			$print[] = '        - ' . $val['file'] . ' : ' . $val['line'];