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.blueprintsdatasources.php 1 location

@@ 263-265 (lines=3) @@
260
261
            $field_groups = array();
262
263
            foreach ($sections as $section) {
264
                $field_groups[$section->get('id')] = array('fields' => $section->fetchFields(), 'section' => $section);
265
            }
266
267
            $options = array(
268
                array(

symphony/lib/toolkit/fields/field.taglist.php 1 location

@@ 211-213 (lines=3) @@
208
            $field_groups = array();
209
210
            if (is_array($sections) && !empty($sections)) {
211
                foreach ($sections as $section) {
212
                    $field_groups[$section->get('id')] = array(
213
                        'fields' => $section->fetchFields(),
214
                        'section' => $section
215
                    );
216
                }