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

@@ 781-790 (lines=10) @@
778
     *
779
     * @param $email
780
     */
781
    public function purgeLoginAttempts($email)
782
    {
783
        // Emails should NOT be case sensitive.
784
        $email = strtolower($email);
785
786
        $this->ci->login_model->purgeLoginAttempts($email);
787
788
        // @todo record activity of login attempts purge.
789
        Events::trigger('didPurgeLoginAttempts', [$email]);
790
    }
791
792
    //--------------------------------------------------------------------
793
@@ 801-810 (lines=10) @@
798
     *
799
     * @param $email
800
     */
801
    public function purgeRememberTokens($email)
802
    {
803
        // Emails should NOT be case sensitive.
804
        $email = strtolower($email);
805
806
        $this->ci->login_model->purgeRememberTokens($email);
807
808
        // todo record activity of remember me purges.
809
        Events::trigger('didPurgeRememberTokens', [$email]);
810
    }
811
812
    //--------------------------------------------------------------------
813