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

protected/extensions/elFinder/php/elFinderVolumeFTP.class.php 1 location

@@ 416-420 (lines=5) @@
413
		$path = preg_replace('|^\.\/?|', '/', $path);
414
		$path = preg_replace('/^([^\/])/', "/$1", $path);
415
416
		if (strpos($path, '/') === 0) {
417
			$initial_slashes = true;
418
		} else {
419
			$initial_slashes = false;
420
		}
421
			
422
		if (($initial_slashes) 
423
		&& (strpos($path, '//') === 0) 

protected/extensions/elFinder/php/elFinderVolumeLocalFileSystem.class.php 1 location

@@ 160-164 (lines=5) @@
157
			return '.';
158
		}
159
160
		if (strpos($path, '/') === 0) {
161
			$initial_slashes = true;
162
		} else {
163
			$initial_slashes = false;
164
		}
165
			
166
		if (($initial_slashes) 
167
		&& (strpos($path, '//') === 0)