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

src/Query/QueryParser.php 2 locations

@@ 730-734 (lines=5) @@
727
728
            $field = $this->lexer->token['value'];
729
730
            while ($this->lexer->isNextToken(Lexer::T_DOT)) {
731
                $this->match(Lexer::T_DOT);
732
                $this->match(Lexer::T_IDENTIFIER);
733
                $field .= '.' . $this->lexer->token['value'];
734
            }
735
        }
736
737
        // Creating AST node
@@ 1303-1307 (lines=5) @@
1300
1301
            $field = $this->lexer->token['value'];
1302
1303
            while ($this->lexer->isNextToken(Lexer::T_DOT)) {
1304
                $this->match(Lexer::T_DOT);
1305
                $this->match(Lexer::T_IDENTIFIER);
1306
                $field .= '.' . $this->lexer->token['value'];
1307
            }
1308
1309
            $partialFieldSet[] = $field;
1310
        }