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 = 5-5 lines in 2 locations

symphony/content/content.blueprintssections.php 2 locations

@@ 219-223 (lines=5) @@
216
        $label = Widget::Label(__('Navigation Group'));
217
        $label->appendChild(Widget::Input('meta[navigation_group]', (isset($meta['navigation_group']) ? General::sanitize($meta['navigation_group']) : null)));
218
219
        if (isset($this->_errors['navigation_group'])) {
220
            $navgroupdiv->appendChild(Widget::Error($label, $this->_errors['navigation_group']));
221
        } else {
222
            $navgroupdiv->appendChild($label);
223
        }
224
225
        if (is_array($sections) && !empty($sections)) {
226
            $ul = new XMLElement('ul', null, array('class' => 'tags singular', 'data-interactive' => 'data-interactive'));
@@ 437-441 (lines=5) @@
434
        $label = Widget::Label(__('Navigation Group'));
435
        $label->appendChild(Widget::Input('meta[navigation_group]', General::sanitize($meta['navigation_group'])));
436
437
        if (isset($this->_errors['navigation_group'])) {
438
            $navgroupdiv->appendChild(Widget::Error($label, $this->_errors['navigation_group']));
439
        } else {
440
            $navgroupdiv->appendChild($label);
441
        }
442
443
        if (is_array($sections) && !empty($sections)) {
444
            $ul = new XMLElement('ul', null, array('class' => 'tags singular', 'data-interactive' => 'data-interactive'));