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

classes/class.phpmailer.php 2 locations

@@ 1636-1642 (lines=7) @@
1633
                    if (!$firstword) {
1634
                        if ($space_left > 20) {
1635
                            $len = $space_left;
1636
                            if ($is_utf8) {
1637
                                $len = $this->utf8CharBoundary($word, $len);
1638
                            } elseif (substr($word, $len - 1, 1) == '=') {
1639
                                $len--;
1640
                            } elseif (substr($word, $len - 2, 1) == '=') {
1641
                                $len -= 2;
1642
                            }
1643
                            $part = substr($word, 0, $len);
1644
                            $word = substr($word, $len);
1645
                            $buf .= ' ' . $part;
@@ 1657-1663 (lines=7) @@
1654
                            break;
1655
                        }
1656
                        $len = $length;
1657
                        if ($is_utf8) {
1658
                            $len = $this->utf8CharBoundary($word, $len);
1659
                        } elseif (substr($word, $len - 1, 1) == '=') {
1660
                            $len--;
1661
                        } elseif (substr($word, $len - 2, 1) == '=') {
1662
                            $len -= 2;
1663
                        }
1664
                        $part = substr($word, 0, $len);
1665
                        $word = substr($word, $len);
1666