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 = 8-11 lines in 3 locations

vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/CSS.php 1 location

@@ 154-164 (lines=11) @@
151
                continue;
152
            }
153
154
            if ($token['code'] === T_FUNCTION) {
155
                // There are no functions in CSS, so convert this to a string.
156
                $finalTokens[$newStackPtr] = array(
157
                                              'type'    => 'T_STRING',
158
                                              'code'    => T_STRING,
159
                                              'content' => $token['content'],
160
                                             );
161
162
                $newStackPtr++;
163
                continue;
164
            }
165
166
            if ($token['code'] === T_COMMENT
167
                && substr($token['content'], 0, 2) === '/*'

vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/PHP.php 2 locations

@@ 424-431 (lines=8) @@
421
422
            if ($tokenIsArray === false && ($token[0] === '"' || $token[0] === 'b"')) {
423
                // Binary casts need a special token.
424
                if ($token[0] === 'b"') {
425
                    $finalTokens[$newStackPtr] = array(
426
                                                  'code'    => T_BINARY_CAST,
427
                                                  'type'    => 'T_BINARY_CAST',
428
                                                  'content' => 'b',
429
                                                 );
430
                    $newStackPtr++;
431
                }
432
433
                $tokenContent = '"';
434
                $nestedVars   = array();
@@ 902-910 (lines=9) @@
899
                                T_NAMESPACE            => true,
900
                                T_PAAMAYIM_NEKUDOTAYIM => true,
901
                               );
902
                    if (isset($context[$finalTokens[$lastNotEmptyToken]['code']]) === true) {
903
                        $finalTokens[$newStackPtr] = array(
904
                                                      'content' => $token[1],
905
                                                      'code'    => T_STRING,
906
                                                      'type'    => 'T_STRING',
907
                                                     );
908
                        $newStackPtr++;
909
                        continue;
910
                    }
911
                }//end if
912
913
                $newToken = null;