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

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

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

@@ 229-233 (lines=5) @@
226
                    : EmailHelper::qEncode($this->_sender_name) . ' <' . $this->_sender_email_address . '>';
227
228
                // Build the 'Reply-To' header field body
229
                if (!empty($this->_reply_to_email_address)) {
230
                    $reply_to = empty($this->_reply_to_name)
231
                        ? $this->_reply_to_email_address
232
                        : EmailHelper::qEncode($this->_reply_to_name) . ' <' . $this->_reply_to_email_address . '>';
233
                }
234
235
                if (!empty($reply_to)) {
236
                    $this->_header_fields = array_merge(