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

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

@@ 2200-2203 (lines=4) @@
2197
                        echo '* searching for opener *'.PHP_EOL;
2198
                    }
2199
2200
                    if (isset($tokenizer->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) {
2201
                        $oldIgnore = $ignore;
2202
                        $ignore    = 0;
2203
                    }
2204
2205
                    // PHP has a max nesting level for functions. Stop before we hit that limit
2206
                    // because too many loops means we've run into trouble anyway.
@@ 2239-2241 (lines=3) @@
2236
2237
                    $depth = $oldDepth;
2238
2239
                    if (isset($tokenizer->scopeOpeners[$tokenType]['end'][T_CLOSE_CURLY_BRACKET]) === true) {
2240
                        $ignore = $oldIgnore;
2241
                    }
2242
                }//end if
2243
            }//end if
2244