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

protected/extensions/api-docs/ApiCommand.php 1 location

@@ 166-172 (lines=7) @@
163
		return implode(', ',$subclasses);
164
	}
165
166
	public function renderTypeUrl($type)
167
	{
168
		if(isset($this->classes[$type]) && $type!==$this->currentClass)
169
			return '{{'.$type.'|'.$type.'}}';
170
		else
171
			return $type;
172
	}
173
174
	public function renderSubjectUrl($type,$subject,$text=null)
175
	{

protected/extensions/api-docs/ApiModel.php 1 location

@@ 349-355 (lines=7) @@
346
		return $doc;
347
	}
348
349
	protected function getTypeUrl($type)
350
	{
351
		if(isset($this->classes[$type]) && $type!==$this->_currentClass)
352
			return '{{'.$type.'|'.$type.'}}';
353
		else
354
			return $type;
355
	}
356
357
	protected function processProperties($class)
358
	{