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

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

@@ 928-942 (lines=15) @@
925
     *
926
     * @return boolean
927
     */
928
    public function addFixableError(
929
        $error,
930
        $stackPtr,
931
        $code='',
932
        $data=array(),
933
        $severity=0
934
    ) {
935
        $recorded = $this->addError($error, $stackPtr, $code, $data, $severity, true);
936
        if ($recorded === true && $this->fixer->enabled === true) {
937
            return true;
938
        }
939
940
        return false;
941
942
    }//end addFixableError()
943
944
945
    /**
@@ 959-973 (lines=15) @@
956
     *
957
     * @return boolean
958
     */
959
    public function addFixableWarning(
960
        $warning,
961
        $stackPtr,
962
        $code='',
963
        $data=array(),
964
        $severity=0
965
    ) {
966
        $recorded = $this->addWarning($warning, $stackPtr, $code, $data, $severity, true);
967
        if ($recorded === true && $this->fixer->enabled === true) {
968
            return true;
969
        }
970
971
        return false;
972
973
    }//end addFixableWarning()
974
975
976
    /**