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

Source/Queries/Builders/OperationQueryInterpreter.php 2 locations

@@ 113-120 (lines=8) @@
110
        $this->interpretSourceAsScope($assignTo);
111
    }
112
113
    final protected function visitAddRange(O\MethodCallExpression $expression)
114
    {
115
        $this->interpretation->interpretAddRange(
116
                $this->getId('add-range'),
117
                $this->interpretSource($this->getId('add-range-source'), $this->getArgumentAt(0, $expression))
118
        );
119
        $this->interpretSourceAsScope($expression);
120
    }
121
122
    final protected function visitRemove(O\MethodCallExpression $expression)
123
    {
@@ 131-138 (lines=8) @@
128
        $this->interpretSourceAsScope($expression);
129
    }
130
131
    final protected function visitRemoveRange(O\MethodCallExpression $expression)
132
    {
133
        $this->interpretation->interpretRemoveRange(
134
                $this->getId('remove-range'),
135
                $this->interpretSource($this->getId('remove-range-source'), $this->getArgumentAt(0, $expression))
136
        );
137
        $this->interpretSourceAsScope($expression);
138
    }
139
140
    final protected function visitRemoveWhere(O\MethodCallExpression $expression)
141
    {