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

classes/security/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php 1 location

@@ 176-176 (lines=1) @@
173
        // parse it
174
        $property = $attr = null;
175
        if (strpos($name, '#') !== false) list($name, $property) = explode('#', $name);
176
        if (strpos($name, '@') !== false) list($name, $attr)     = explode('@', $name);
177
178
        // figure out the parameters
179
        $params = array();

modules/member/member.model.php 1 location

@@ 366-366 (lines=1) @@
363
			{
364
				foreach($extra_vars as $key => $val)
365
				{
366
					if(!is_array($val) && strpos($val, '|@|') !== FALSE) $val = explode('|@|', $val);
367
					if(!$info->{$key}) $info->{$key} = $val;
368
				}
369
			}