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

src/functions.inc.php 2 locations

@@ 77-78 (lines=2) @@
74
		}
75
		$sRet .= '</ul>';
76
77
		if ($e instanceof \Exception)
78
			$sRet .= '<p style="font-size:.8em">Triggered in <strong>' . $e->getFile() . '</strong> at line ' . $e->getLine() . '</p>';
79
80
		$sRet .= '<pre style="position:fixed;bottom:2em;display:' . (vsc::getEnv()->isDevelopment() ? 'block' : 'none') . ';font-size:.8em" id="trace">';
81
	}
@@ 115-118 (lines=4) @@
112
		echo '</body>';
113
		echo '</html>';
114
	} else {
115
		if ($e instanceof \Exception) {
116
			$sRet .= $e->getMessage() . "\n";
117
			$sRet .= "\t" . $e->getFile() . ' at line ' . $e->getLine() . "\n";
118
		}
119
		echo $sRet;
120
	}
121
	exit (0);