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

@@ 791-800 (lines=10) @@
788
     *
789
     * @param $email
790
     */
791
    public function purgeLoginAttempts($email)
792
    {
793
        // Emails should NOT be case sensitive.
794
        $email = strtolower($email);
795
796
        $this->ci->login_model->purgeLoginAttempts($email);
797
798
        // @todo record activity of login attempts purge.
799
        Events::trigger('didPurgeLoginAttempts', [$email]);
800
    }
801
802
    //--------------------------------------------------------------------
803
@@ 811-820 (lines=10) @@
808
     *
809
     * @param $email
810
     */
811
    public function purgeRememberTokens($email)
812
    {
813
        // Emails should NOT be case sensitive.
814
        $email = strtolower($email);
815
816
        $this->ci->login_model->purgeRememberTokens($email);
817
818
        // todo record activity of remember me purges.
819
        Events::trigger('didPurgeRememberTokens', [$email]);
820
    }
821
822
    //--------------------------------------------------------------------
823