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

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

@@ 440-452 (lines=13) @@
437
         *
438
         * @return array
439
         */
440
        public function getExportModes()
441
        {
442
            return array(
443
                'listHandle' => ExportableField::LIST_OF
444
                    + ExportableField::HANDLE,
445
                'listValue' => ExportableField::LIST_OF
446
                    + ExportableField::VALUE,
447
                'listHandleToValue' => ExportableField::LIST_OF
448
                    + ExportableField::HANDLE
449
                    + ExportableField::VALUE,
450
                'getPostdata' => ExportableField::POSTDATA
451
            );
452
        }
453
454
        /*-------------------------------------------------------------------------
455
            Export:

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

@@ 543-555 (lines=13) @@
540
         *
541
         * @return array
542
         */
543
        public function getExportModes()
544
        {
545
            return array(
546
                'listHandle' => ExportableField::LIST_OF
547
                    + ExportableField::HANDLE,
548
                'listValue' => ExportableField::LIST_OF
549
                    + ExportableField::VALUE,
550
                'listHandleToValue' => ExportableField::LIST_OF
551
                    + ExportableField::HANDLE
552
                    + ExportableField::VALUE,
553
                'getPostdata' => ExportableField::POSTDATA
554
            );
555
        }
556
557
        public function prepareImportValue($data, $mode, $entry_id = null)
558
        {