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

vendor/symfony/console/Symfony/Component/Console/Application.php 2 locations

@@ 786-788 (lines=3) @@
783
784
        if ($sttyString = $this->getSttyColumns()) {
785
            // extract [w, h] from "rows h; columns w;"
786
            if (preg_match('/rows.(\d+);.columns.(\d+);/i', $sttyString, $matches)) {
787
                return array((int) $matches[2], (int) $matches[1]);
788
            }
789
            // extract [w, h] from "; h rows; w columns"
790
            if (preg_match('/;.(\d+).rows;.(\d+).columns/i', $sttyString, $matches)) {
791
                return array((int) $matches[2], (int) $matches[1]);
@@ 790-792 (lines=3) @@
787
                return array((int) $matches[2], (int) $matches[1]);
788
            }
789
            // extract [w, h] from "; h rows; w columns"
790
            if (preg_match('/;.(\d+).rows;.(\d+).columns/i', $sttyString, $matches)) {
791
                return array((int) $matches[2], (int) $matches[1]);
792
            }
793
        }
794
795
        return array(null, null);