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/squizlabs/php_codesniffer/CodeSniffer/File.php 2 locations

@@ 3456-3458 (lines=3) @@
3453
                $i = $this->_tokens[$i]['parenthesis_opener'];
3454
            }
3455
3456
            if (isset(PHP_CodeSniffer_Tokens::$emptyTokens[$this->_tokens[$i]['code']]) === false) {
3457
                $lastNotEmpty = $i;
3458
            }
3459
        }//end for
3460
3461
        return 0;
@@ 3532-3534 (lines=3) @@
3529
                $i = $this->_tokens[$i]['parenthesis_closer'];
3530
            }
3531
3532
            if (isset(PHP_CodeSniffer_Tokens::$emptyTokens[$this->_tokens[$i]['code']]) === false) {
3533
                $lastNotEmpty = $i;
3534
            }
3535
        }//end for
3536
3537
        return ($this->numTokens - 1);