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

src/Parser/RegularParser.php 2 locations

@@ 140-142 (lines=3) @@
137
        $closingName = null;
138
139
        while($this->position < $this->tokensCount) {
140
            while($this->position < $this->tokensCount && false === $this->lookahead(self::TOKEN_OPEN)) {
141
                $content .= $this->match(null, true);
142
            }
143
144
            $this->beginBacktrack();
145
            /** @psalm-suppress MixedArgumentTypeCoercion */
@@ 234-236 (lines=3) @@
231
        $value = '';
232
233
        if($this->match(self::TOKEN_DELIMITER, false)) {
234
            while($this->position < $this->tokensCount && false === $this->lookahead(self::TOKEN_DELIMITER)) {
235
                $value .= $this->match(null, false);
236
            }
237
238
            return $this->match(self::TOKEN_DELIMITER, false) ? $value : false;
239
        }