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

protected/extensions/api-docs/ApiModel.php 2 locations

@@ 239-240 (lines=2) @@
236
	{
237
		if(!isset($this->classes[$class]))
238
			return '';
239
		if(method_exists($class,$method) || property_exists($class,$method))
240
			return $class.'::'.$method;
241
		if(method_exists($class,'get'.$method) || method_exists($class,'set'.$method))
242
			return $class.'::'.$method;
243
		if(($parent=get_parent_class($class))!==false)
@@ 241-242 (lines=2) @@
238
			return '';
239
		if(method_exists($class,$method) || property_exists($class,$method))
240
			return $class.'::'.$method;
241
		if(method_exists($class,'get'.$method) || method_exists($class,'set'.$method))
242
			return $class.'::'.$method;
243
		if(($parent=get_parent_class($class))!==false)
244
			return $this->getMethodUrl($parent,$method);
245
		else