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

classes/class.phpmailer.php 2 locations

@@ 1202-1204 (lines=3) @@
1199
        }
1200
        if ($this->SingleTo) {
1201
            foreach ($this->SingleToArray as $toAddr) {
1202
                if (!@$mail = popen($sendmail, 'w')) {
1203
                    throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
1204
                }
1205
                fputs($mail, 'To: ' . $toAddr . "\n");
1206
                fputs($mail, $header);
1207
                fputs($mail, $body);
@@ 1223-1225 (lines=3) @@
1220
                }
1221
            }
1222
        } else {
1223
            if (!@$mail = popen($sendmail, 'w')) {
1224
                throw new phpmailerException($this->lang('execute') . $this->Sendmail, self::STOP_CRITICAL);
1225
            }
1226
            fputs($mail, $header);
1227
            fputs($mail, $body);
1228
            $result = pclose($mail);