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

classes/security/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php 4 locations

@@ 194-197 (lines=4) @@
191
        $this->doctype = $this->manager->doctype;
192
193
        foreach ($this->manager->modules as $module) {
194
            foreach($module->info_tag_transform as $k => $v) {
195
                if ($v === false) unset($this->info_tag_transform[$k]);
196
                else $this->info_tag_transform[$k] = $v;
197
            }
198
            foreach($module->info_attr_transform_pre as $k => $v) {
199
                if ($v === false) unset($this->info_attr_transform_pre[$k]);
200
                else $this->info_attr_transform_pre[$k] = $v;
@@ 198-201 (lines=4) @@
195
                if ($v === false) unset($this->info_tag_transform[$k]);
196
                else $this->info_tag_transform[$k] = $v;
197
            }
198
            foreach($module->info_attr_transform_pre as $k => $v) {
199
                if ($v === false) unset($this->info_attr_transform_pre[$k]);
200
                else $this->info_attr_transform_pre[$k] = $v;
201
            }
202
            foreach($module->info_attr_transform_post as $k => $v) {
203
                if ($v === false) unset($this->info_attr_transform_post[$k]);
204
                else $this->info_attr_transform_post[$k] = $v;
@@ 202-205 (lines=4) @@
199
                if ($v === false) unset($this->info_attr_transform_pre[$k]);
200
                else $this->info_attr_transform_pre[$k] = $v;
201
            }
202
            foreach($module->info_attr_transform_post as $k => $v) {
203
                if ($v === false) unset($this->info_attr_transform_post[$k]);
204
                else $this->info_attr_transform_post[$k] = $v;
205
            }
206
            foreach ($module->info_injector as $k => $v) {
207
                if ($v === false) unset($this->info_injector[$k]);
208
                else $this->info_injector[$k] = $v;
@@ 206-209 (lines=4) @@
203
                if ($v === false) unset($this->info_attr_transform_post[$k]);
204
                else $this->info_attr_transform_post[$k] = $v;
205
            }
206
            foreach ($module->info_injector as $k => $v) {
207
                if ($v === false) unset($this->info_injector[$k]);
208
                else $this->info_injector[$k] = $v;
209
            }
210
        }
211
212
        $this->info = $this->manager->getElements();