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

@@ 228-232 (lines=5) @@
225
        $label = Widget::Label(__('Handle'));
226
        $label->appendChild(Widget::Input('meta[handle]', (isset($meta['handle']) ? General::sanitize($meta['handle']) : null)));
227
228
        if (isset($this->_errors['handle'])) {
229
            $handlediv->appendChild(Widget::Error($label, $this->_errors['handle']));
230
        } else {
231
            $handlediv->appendChild($label);
232
        }
233
234
        $div->appendChild($handlediv);
235
@@ 438-442 (lines=5) @@
435
        $label = Widget::Label(__('Handle'));
436
        $label->appendChild(Widget::Input('meta[handle]', (isset($meta['handle']) ? General::sanitize($meta['handle']) : null)));
437
438
        if (isset($this->_errors['handle'])) {
439
            $handlediv->appendChild(Widget::Error($label, $this->_errors['handle']));
440
        } else {
441
            $handlediv->appendChild($label);
442
        }
443
444
        $div->appendChild($handlediv);
445