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

vendor/squizlabs/php_codesniffer/CodeSniffer/File.php 2 locations

@@ 2676-2681 (lines=6) @@
2673
        }
2674
2675
        $content = null;
2676
        for ($i = $stackPtr; $i < $this->numTokens; $i++) {
2677
            if ($this->_tokens[$i]['code'] === T_STRING) {
2678
                $content = $this->_tokens[$i]['content'];
2679
                break;
2680
            }
2681
        }
2682
2683
        return $content;
2684
@@ 2711-2716 (lines=6) @@
2708
        }
2709
2710
        $name = false;
2711
        for ($i = ($stackPtr + 1); $i < $this->numTokens; $i++) {
2712
            if ($this->_tokens[$i]['code'] === T_STRING) {
2713
                $name = $i;
2714
                break;
2715
            }
2716
        }
2717
2718
        if ($name === false) {
2719
            // No name found.