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

phpmyfaq/admin/index.php 1 location

@@ 131-134 (lines=4) @@
128
$faqremember = Filter::filterInput(INPUT_POST, 'faqrememberme', FILTER_SANITIZE_STRING);
129
130
// Set username via SSO
131
if ($faqConfig->get('security.ssoSupport') && isset($_SERVER['REMOTE_USER'])) {
132
    $faqusername = trim($_SERVER['REMOTE_USER']);
133
    $faqpassword = '';
134
}
135
136
// Login via local DB or LDAP or SSO
137
if (!is_null($faqusername) && !is_null($faqpassword)) {

phpmyfaq/index.php 1 location

@@ 117-120 (lines=4) @@
114
$faqremember = Filter::filterInput(INPUT_POST, 'faqrememberme', FILTER_SANITIZE_STRING);
115
116
// Set username via SSO
117
if ($faqConfig->get('security.ssoSupport') && isset($_SERVER['REMOTE_USER'])) {
118
    $faqusername = trim($_SERVER['REMOTE_USER']);
119
    $faqpassword = '';
120
}
121
122
// Login via local DB or LDAP or SSO
123
if (!is_null($faqusername) && !is_null($faqpassword)) {