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/Component/PharUpdate/Version/Comparator.php 2 locations

@@ 147-149 (lines=3) @@
144
                continue;
145
            }
146
147
            if (true === ($li = (false != preg_match('/^\d+$/', $l[$i])))) {
148
                $l[$i] = intval($l[$i]);
149
            }
150
151
            if (true === ($ri = (false != preg_match('/^\d+$/', $r[$i])))) {
152
                $r[$i] = intval($r[$i]);
@@ 151-153 (lines=3) @@
148
                $l[$i] = intval($l[$i]);
149
            }
150
151
            if (true === ($ri = (false != preg_match('/^\d+$/', $r[$i])))) {
152
                $r[$i] = intval($r[$i]);
153
            }
154
155
            if ($li && $ri) {
156
                return ($l[$i] > $r[$i]) ? $x : $y;