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

phpmyfaq/inc/PMF/User/CurrentUser.php 2 locations

@@ 156-160 (lines=5) @@
153
        // Additional code for SSO
154
        if ($this->config->get('security.ssoSupport') && isset($_SERVER['REMOTE_USER']) && '' === $password) {
155
            // if SSO configuration is enabled, REMOTE_USER is provided and we try to login using SSO (no password)
156
            if (($pos = strpos($login, '@')) !== false) {
157
                if ($pos !== 0) {
158
                    $login = substr($login, 0, $pos);
159
                }
160
            }
161
            if (($pos = strpos($login, '\\')) !== false) {
162
                if ($pos !== 0) {
163
                    $login = substr($login, $pos + 1);
@@ 161-165 (lines=5) @@
158
                    $login = substr($login, 0, $pos);
159
                }
160
            }
161
            if (($pos = strpos($login, '\\')) !== false) {
162
                if ($pos !== 0) {
163
                    $login = substr($login, $pos + 1);
164
                }
165
            }
166
        }
167
168
        // authenticate user by login and password