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

classes/class.phpmailer.php 2 locations

@@ 832-839 (lines=8) @@
829
        }
830
        $address = trim($address);
831
        $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
832
        if (!$this->validateAddress($address)) {
833
            $this->setError($this->lang('invalid_address') . ': ' . $address);
834
            $this->edebug($this->lang('invalid_address') . ': ' . $address);
835
            if ($this->exceptions) {
836
                throw new phpmailerException($this->lang('invalid_address') . ': ' . $address);
837
            }
838
            return false;
839
        }
840
        if ($kind != 'Reply-To') {
841
            if (!isset($this->all_recipients[strtolower($address)])) {
842
                array_push($this->$kind, array($address, $name));
@@ 922-929 (lines=8) @@
919
    {
920
        $address = trim($address);
921
        $name = trim(preg_replace('/[\r\n]+/', '', $name)); //Strip breaks and trim
922
        if (!$this->validateAddress($address)) {
923
            $this->setError($this->lang('invalid_address') . ': ' . $address);
924
            $this->edebug($this->lang('invalid_address') . ': ' . $address);
925
            if ($this->exceptions) {
926
                throw new phpmailerException($this->lang('invalid_address') . ': ' . $address);
927
            }
928
            return false;
929
        }
930
        $this->From = $address;
931
        $this->FromName = $name;
932
        if ($auto) {