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

@@ 227-229 (lines=3) @@
224
    {
225
        $position = array_pop($this->backtracks);
226
        $backtrack = '';
227
        for($i = $position; $i < $this->position; $i++) {
228
            $backtrack .= $this->tokens[$i][1];
229
        }
230
231
        return $backtrack;
232
    }
@@ 242-244 (lines=3) @@
239
        }
240
241
        $backtrack = '';
242
        for($i = $position; $i < $this->lastBacktrack; $i++) {
243
            $backtrack .= $this->tokens[$i][1];
244
        }
245
        $this->lastBacktrack = $position;
246
247
        return $backtrack;