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

symphony/lib/toolkit/email-gateways/email.sendmail.php 1 location

@@ 82-86 (lines=5) @@
79
                    : EmailHelper::qEncode($this->_sender_name) . ' <' . $this->_sender_email_address . '>';
80
81
            // Build the 'Reply-To' header field body
82
            if (!empty($this->_reply_to_email_address)) {
83
                $reply_to = empty($this->_reply_to_name)
84
                            ? $this->_reply_to_email_address
85
                            : EmailHelper::qEncode($this->_reply_to_name) . ' <'.$this->_reply_to_email_address.'>';
86
            }
87
88
            if (!empty($reply_to)) {
89
                $this->_header_fields = array_merge(

symphony/lib/toolkit/email-gateways/email.smtp.php 1 location

@@ 99-103 (lines=5) @@
96
                    : EmailHelper::qEncode($this->_sender_name) . ' <' . $this->_sender_email_address . '>';
97
98
            // Build the 'Reply-To' header field body
99
            if (!empty($this->_reply_to_email_address)) {
100
                $reply_to = empty($this->_reply_to_name)
101
                            ? $this->_reply_to_email_address
102
                            : EmailHelper::qEncode($this->_reply_to_name) . ' <'.$this->_reply_to_email_address.'>';
103
            }
104
105
            if (!empty($reply_to)) {
106
                $this->_header_fields = array_merge(