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

myth/Auth/LocalAuthentication.php 2 locations

@@ 182-186 (lines=5) @@
179
        // If throttling time is above zero, we can't allow
180
        // logins now.
181
        $time = (int)$this->isThrottled($user);
182
        if ($time > 0)
183
        {
184
            $this->error = sprintf(lang('auth.throttled'), $time);
185
            return false;
186
        }
187
188
        // Get ip address
189
        $ip_address = $this->ci->input->ip_address();
@@ 673-677 (lines=5) @@
670
        // If throttling time is above zero, we can't allow
671
        // logins now.
672
        $time = (int)$this->isThrottled($user);
673
        if ($time > 0)
674
        {
675
            $this->error = sprintf(lang('auth.throttled'), $time);
676
            return false;
677
        }
678
679
        // Get ip address
680
        $ip_address = $this->ci->input->ip_address();