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 3 locations

symphony/content/content.blueprintsdatasources.php 1 location

@@ 1173-1177 (lines=5) @@
1170
            $div->appendChild(Widget::Input('action[save]',
1171
                ($isEditing ? __('Save Changes') : __('Create Data Source')), 'submit', array('accesskey' => 's')));
1172
1173
            if ($isEditing) {
1174
                $button = new XMLElement('button', __('Delete'));
1175
                $button->setAttributeArray(array(
1176
                    'name' => 'action[delete]',
1177
                    'class' => 'button confirm delete',
1178
                    'title' => __('Delete this data source'),
1179
                    'type' => 'submit',
1180
                    'accesskey' => 'd',

symphony/content/content.blueprintsevents.php 1 location

@@ 348-352 (lines=5) @@
345
            $div->appendChild(Widget::Input('action[save]', ($isEditing ? __('Save Changes') : __('Create Event')),
346
                'submit', array('accesskey' => 's')));
347
348
            if ($isEditing) {
349
                $button = new XMLElement('button', __('Delete'));
350
                $button->setAttributeArray(array(
351
                    'name' => 'action[delete]',
352
                    'class' => 'button confirm delete',
353
                    'title' => __('Delete this event'),
354
                    'type' => 'submit',
355
                    'accesskey' => 'd',

symphony/content/content.blueprintspages.php 1 location

@@ 557-561 (lines=5) @@
554
                'submit', array('accesskey' => 's')
555
            ));
556
557
            if ($this->_context['action'] === 'edit') {
558
                $button = new XMLElement('button', __('Delete'));
559
                $button->setAttributeArray(array(
560
                    'name' => 'action[delete]',
561
                    'class' => 'button confirm delete',
562
                    'title' => __('Delete this page'),
563
                    'accesskey' => 'd',
564
                    'data-message' => __('Are you sure you want to delete this page?')