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 3 locations

symphony/content/content.blueprintspages.php 2 locations

@@ 149-153 (lines=5) @@
146
147
                $col_url = Widget::TableData(Widget::Anchor($page_url, $page_url));
148
149
                if ($page['params']) {
150
                    $col_params = Widget::TableData(trim($page['params'], '/'));
151
                } else {
152
                    $col_params = Widget::TableData(__('None'), 'inactive');
153
                }
154
155
                if (!empty($page['type'])) {
156
                    $col_types = Widget::TableData(implode(', ', $page['type']));
@@ 155-159 (lines=5) @@
152
                    $col_params = Widget::TableData(__('None'), 'inactive');
153
                }
154
155
                if (!empty($page['type'])) {
156
                    $col_types = Widget::TableData(implode(', ', $page['type']));
157
                } else {
158
                    $col_types = Widget::TableData(__('None'), 'inactive');
159
                }
160
161
                if (in_array($page['id'], $this->_hilights)) {
162
                    $class[] = 'failed';

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

@@ 237-241 (lines=5) @@
234
235
                $pages = implode('', $pagelinks);
236
237
                if ($pages === '') {
238
                    $pagelinks = Widget::TableData(__('None'), 'inactive');
239
                } else {
240
                    $pagelinks = Widget::TableData($pages, 'pages');
241
                }
242
243
                // Authors
244
                $author = $r['author']['name'];