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

symphony/lib/core/class.administration.php 2 locations

@@ 359-361 (lines=3) @@
356
                $callback['pageroot'] .= $bits[0] . '/';
357
            }
358
359
            if (isset($bits[1])) {
360
                $callback['context'] = preg_split('/\//', $bits[1], -1, PREG_SPLIT_NO_EMPTY);
361
            }
362
363
            $callback['driver_location'] = EXTENSIONS . '/' . $extension_name . '/content/content.' . $callback['driver'] . '.php';
364
            // Extensions won't be part of the autoloader chain, so first try to require them if they are available.
@@ 406-408 (lines=3) @@
403
                $page->parseContext($callback['context'], $bits);
404
405
            // Default context
406
            } elseif (isset($bits[2])) {
407
                $callback['context'] = preg_split('/\//', $bits[2], -1, PREG_SPLIT_NO_EMPTY);
408
            }
409
        }
410
411
        /**