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

@@ 1095-1099 (lines=5) @@
1092
            return null;
1093
        }
1094
1095
        if ($this->lexer->isNextToken(Lexer::T_INPUT_PARAMETER)) {
1096
            $this->match(Lexer::T_INPUT_PARAMETER);
1097
1098
            return new AST\InputParameter($this->lexer->token['value']);
1099
        }
1100
1101
        return $this->ArithmeticExpression();
1102
    }
@@ 2603-2607 (lines=5) @@
2600
     * @return mixed
2601
     */
2602
    public function InstanceOfParameter() {
2603
        if ($this->lexer->isNextToken(Lexer::T_INPUT_PARAMETER)) {
2604
            $this->match(Lexer::T_INPUT_PARAMETER);
2605
2606
            return new AST\InputParameter($this->lexer->token['value']);
2607
        }
2608
2609
        return $this->AliasIdentificationVariable();
2610
    }