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

classes/class.phpmailer.php 2 locations

@@ 736-746 (lines=11) @@
733
     * Send messages using $Sendmail.
734
     * @return void
735
     */
736
    public function isSendmail()
737
    {
738
        $ini_sendmail_path = ini_get('sendmail_path');
739
740
        if (!stristr($ini_sendmail_path, 'sendmail')) {
741
            $this->Sendmail = '/usr/sbin/sendmail';
742
        } else {
743
            $this->Sendmail = $ini_sendmail_path;
744
        }
745
        $this->Mailer = 'sendmail';
746
    }
747
748
    /**
749
     * Send messages using qmail.
@@ 752-762 (lines=11) @@
749
     * Send messages using qmail.
750
     * @return void
751
     */
752
    public function isQmail()
753
    {
754
        $ini_sendmail_path = ini_get('sendmail_path');
755
756
        if (!stristr($ini_sendmail_path, 'qmail')) {
757
            $this->Sendmail = '/var/qmail/bin/qmail-inject';
758
        } else {
759
            $this->Sendmail = $ini_sendmail_path;
760
        }
761
        $this->Mailer = 'qmail';
762
    }
763
764
    /**
765
     * Add a "To" address.