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

Sistema/Ayudantes/CFPHPFormularios.php 2 locations

@@ 185-185 (lines=1) @@
182
	private function showInput($data) {
183
		$r = '';
184
		// Number start if is range
185
		if ($data['type'] == 'range' and isset($data['min'])) $r .= $data['min'] . ' '; 
186
		
187
		$r .= '<input ';
188
		
@@ 200-200 (lines=1) @@
197
		$r .= '/>';
198
		
199
		// Number end if is range
200
		if ($data['type'] == 'range' and isset($data['max'])) $r .= $data['max'] . ' ';
201
		
202
		// Return
203
		return $r;