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/lib/toolkit/data-sources/class.datasource.section.php 2 locations

@@ 226-230 (lines=5) @@
223
                            }
224
                        }
225
                    } else {
226
                        if (isset($entries['records'][0])) {
227
                            $data = $entries['records'][0]->getData();
228
                            $pool = FieldManager::fetch(array_keys($data));
229
                            self::$_fieldPool += $pool;
230
                        }
231
232
                        foreach ($entries['records'] as $entry) {
233
                            $xEntry = $this->processEntry($entry);
@@ 413-417 (lines=5) @@
410
            $xGroup = new XMLElement($element, null, $group['attr']);
411
412
            if (is_array($group['records']) && !empty($group['records'])) {
413
                if (isset($group['records'][0])) {
414
                    $data = $group['records'][0]->getData();
415
                    $pool = FieldManager::fetch(array_keys($data));
416
                    self::$_fieldPool += $pool;
417
                }
418
419
                foreach ($group['records'] as $entry) {
420
                    $xEntry = $this->processEntry($entry);