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/core/class.errorhandler.php 1 location

@@ 208-220 (lines=13) @@
205
206
        $queries = null;
207
208
        if (is_object(Symphony::Database())) {
209
            $debug = Symphony::Database()->debug();
210
211
            if (!empty($debug)) {
212
                foreach ($debug as $query) {
213
                    $queries .= sprintf(
214
                        '<li><em>[%01.4f]</em><code> %s;</code> </li>',
215
                        (isset($query['execution_time']) ? $query['execution_time'] : null),
216
                        htmlspecialchars($query['query'])
217
                    );
218
                }
219
            }
220
        }
221
222
        return self::renderHtml(
223
            'fatalerror.generic',

symphony/lib/core/class.symphony.php 1 location

@@ 1082-1094 (lines=13) @@
1079
            );
1080
        }
1081
1082
        if (is_object(Symphony::Database())) {
1083
            $debug = Symphony::Database()->debug();
1084
1085
            if (!empty($debug)) {
1086
                foreach ($debug as $query) {
1087
                    $queries .= sprintf(
1088
                        '<li><em>[%01.4f]</em><code> %s;</code> </li>',
1089
                        (isset($query['execution_time']) ? $query['execution_time'] : null),
1090
                        htmlspecialchars($query['query'])
1091
                    );
1092
                }
1093
            }
1094
        }
1095
1096
        $html = sprintf(
1097
            file_get_contents(self::getTemplate('fatalerror.database')),