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-6 lines in 3 locations

symphony/content/content.blueprintsdatasources.php 1 location

@@ 1142-1144 (lines=3) @@
1139
1140
            $options = array();
1141
1142
            foreach ($pages as $page) {
1143
                $options[] = array(
1144
                    $page['id'],
1145
                    in_array($page['id'], $selected),
1146
                    PageManager::resolvePageTitle($page['id'])
1147
                );

symphony/content/content.blueprintsevents.php 1 location

@@ 255-257 (lines=3) @@
252
253
                $options = array();
254
255
                foreach ($pages as $page) {
256
                    $options[] = array(
257
                        $page['id'],
258
                        in_array($page['id'], $selected),
259
                        PageManager::resolvePageTitle($page['id'])
260
                    );

symphony/lib/toolkit/class.resourcemanager.php 1 location

@@ 368-373 (lines=6) @@
365
            ));
366
367
            if (is_array($pages)) {
368
                foreach ($pages as $key => &$page) {
369
                    $pages[$key] = array(
370
                        'id' => $page['id'],
371
                        'title' => PageManager::resolvePageTitle($page['id'])
372
                    );
373
                }
374
            }
375
376
            return (is_null($pages) ? array() : $pages);