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

classes/security/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php 2 locations

@@ 186-192 (lines=7) @@
183
                    }
184
                } // iterator variable carries over
185
                if ($t->name === 'tr') {
186
                    if ($inside_tbody) {
187
                        $ret = array_merge($ret, $token_array);
188
                    } else {
189
                        $ret[] = new HTMLPurifier_Token_Start('tbody');
190
                        $ret = array_merge($ret, $token_array);
191
                        $inside_tbody = true;
192
                    }
193
                } elseif ($t->name === 'tbody') {
194
                    if ($inside_tbody) {
195
                        $ret[] = new HTMLPurifier_Token_End('tbody');
@@ 193-201 (lines=9) @@
190
                        $ret = array_merge($ret, $token_array);
191
                        $inside_tbody = true;
192
                    }
193
                } elseif ($t->name === 'tbody') {
194
                    if ($inside_tbody) {
195
                        $ret[] = new HTMLPurifier_Token_End('tbody');
196
                        $inside_tbody = false;
197
                        $ret = array_merge($ret, $token_array);
198
                    } else {
199
                        $ret = array_merge($ret, $token_array);
200
                    }
201
                } else {
202
                    trigger_error("tr/tbody in content invariant failed in Table ChildDef", E_USER_ERROR);
203
                }
204
            }