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

myth/Auth/LocalAuthentication.php 2 locations

@@ 765-774 (lines=10) @@
762
     *
763
     * @param $email
764
     */
765
    public function purgeLoginAttempts($email)
766
    {
767
        // Emails should NOT be case sensitive.
768
        $email = strtolower($email);
769
770
        $this->ci->login_model->purgeLoginAttempts($email);
771
772
        // @todo record activity of login attempts purge.
773
        Events::trigger('didPurgeLoginAttempts', [$email]);
774
    }
775
776
    //--------------------------------------------------------------------
777
@@ 785-794 (lines=10) @@
782
     *
783
     * @param $email
784
     */
785
    public function purgeRememberTokens($email)
786
    {
787
        // Emails should NOT be case sensitive.
788
        $email = strtolower($email);
789
790
        $this->ci->login_model->purgeRememberTokens($email);
791
792
        // todo record activity of remember me purges.
793
        Events::trigger('didPurgeRememberTokens', [$email]);
794
    }
795
796
    //--------------------------------------------------------------------
797