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

@@ 116-118 (lines=3) @@
113
        $closingName = null;
114
115
        while($this->position < $this->tokensCount) {
116
            while($this->position < $this->tokensCount && false === $this->lookahead(self::TOKEN_OPEN)) {
117
                $content .= $this->match(null, true);
118
            }
119
120
            $this->beginBacktrack();
121
            $contentMatchedShortcodes = $this->shortcode($names);
@@ 201-203 (lines=3) @@
198
        $value = '';
199
200
        if($this->match(self::TOKEN_DELIMITER, false)) {
201
            while($this->position < $this->tokensCount && false === $this->lookahead(self::TOKEN_DELIMITER)) {
202
                $value .= $this->match(null, false);
203
            }
204
205
            return $this->match(self::TOKEN_DELIMITER, false) ? $value : false;
206
        }