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

@@ 326-328 (lines=3) @@
323
324
                $fields['data_sources'] = preg_split('/,/i', $fields['data_sources'], -1, PREG_SPLIT_NO_EMPTY);
325
                $fields['events'] = preg_split('/,/i', $fields['events'], -1, PREG_SPLIT_NO_EMPTY);
326
            } elseif (isset($_REQUEST['parent']) && is_numeric($_REQUEST['parent'])) {
327
                $fields['parent'] = $_REQUEST['parent'];
328
            }
329
330
            $title = $fields['title'];
331
@@ 709-711 (lines=3) @@
706
707
            $parent_link_suffix = null;
708
709
            if (isset($_REQUEST['parent']) && is_numeric($_REQUEST['parent'])) {
710
                $parent_link_suffix = '?parent=' . $_REQUEST['parent'];
711
            }
712
713
            if (@array_key_exists('delete', $_POST['action'])) {
714
                $this->__actionDelete($page_id, SYMPHONY_URL . '/blueprints/pages/' . $parent_link_suffix);