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

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

@@ 500-503 (lines=4) @@
497
                'handle' => array()
498
            );
499
500
            foreach ($data as $value) {
501
                $result['value'][] = $value;
502
                $result['handle'][] = Lang::createHandle($value);
503
            }
504
505
            return $result;
506
        }

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

@@ 603-606 (lines=4) @@
600
            sort($data);
601
602
            $result = array();
603
            foreach ($data as $value) {
604
                $result['value'][] = $value;
605
                $result['handle'][] = Lang::createHandle($value);
606
            }
607
608
            return $result;
609
        }