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/content/content.blueprintspages.php 2 locations

@@ 283-285 (lines=3) @@
280
281
            $fields['data_sources'] = preg_split('/,/i', $fields['data_sources'], -1, PREG_SPLIT_NO_EMPTY);
282
            $fields['events'] = preg_split('/,/i', $fields['events'], -1, PREG_SPLIT_NO_EMPTY);
283
        } elseif (isset($_REQUEST['parent']) && is_numeric($_REQUEST['parent'])) {
284
            $fields['parent'] = $_REQUEST['parent'];
285
        }
286
287
        $title = $fields['title'];
288
@@ 621-623 (lines=3) @@
618
619
        $parent_link_suffix = null;
620
621
        if (isset($_REQUEST['parent']) && is_numeric($_REQUEST['parent'])) {
622
            $parent_link_suffix = '?parent=' . $_REQUEST['parent'];
623
        }
624
625
        if (@array_key_exists('delete', $_POST['action'])) {
626
            $this->__actionDelete($page_id, SYMPHONY_URL  . '/blueprints/pages/' . $parent_link_suffix);