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

protected/extensions/bootstrap/widgets/TbButton.php 2 locations

@@ 226-228 (lines=3) @@
223
			case self::BUTTON_BUTTON:
224
				return CHtml::htmlButton($this->label, $this->htmlOptions);
225
226
			case self::BUTTON_SUBMIT:
227
				$this->htmlOptions['type'] = 'submit';
228
				return CHtml::htmlButton($this->label, $this->htmlOptions);
229
230
			case self::BUTTON_RESET:
231
				$this->htmlOptions['type'] = 'reset';
@@ 230-232 (lines=3) @@
227
				$this->htmlOptions['type'] = 'submit';
228
				return CHtml::htmlButton($this->label, $this->htmlOptions);
229
230
			case self::BUTTON_RESET:
231
				$this->htmlOptions['type'] = 'reset';
232
				return CHtml::htmlButton($this->label, $this->htmlOptions);
233
234
			case self::BUTTON_SUBMITLINK:
235
				return CHtml::linkButton($this->label, $this->htmlOptions);