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

classes/class.phpmailer.php 2 locations

@@ 2874-2880 (lines=7) @@
2871
     * Clear all CC recipients.
2872
     * @return void
2873
     */
2874
    public function clearCCs()
2875
    {
2876
        foreach ($this->cc as $cc) {
2877
            unset($this->all_recipients[strtolower($cc[0])]);
2878
        }
2879
        $this->cc = array();
2880
    }
2881
2882
    /**
2883
     * Clear all BCC recipients.
@@ 2886-2892 (lines=7) @@
2883
     * Clear all BCC recipients.
2884
     * @return void
2885
     */
2886
    public function clearBCCs()
2887
    {
2888
        foreach ($this->bcc as $bcc) {
2889
            unset($this->all_recipients[strtolower($bcc[0])]);
2890
        }
2891
        $this->bcc = array();
2892
    }
2893
2894
    /**
2895
     * Clear all ReplyTo recipients.