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

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