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

@@ 922-925 (lines=4) @@
919
		$backtrace_args = defined('\DEBUG_BACKTRACE_IGNORE_ARGS') ? \DEBUG_BACKTRACE_IGNORE_ARGS : 0;
920
		$backtrace = debug_backtrace($backtrace_args);
921
922
		if(count($backtrace) > 1 && $backtrace[1]['function'] === 'debugPrint' && !$backtrace[1]['class'])
923
		{
924
			array_shift($backtrace);
925
		}
926
		foreach($backtrace as $val)
927
		{
928
			$print[] = '        - ' . $val['file'] . ' : ' . $val['line'];