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

protected/extensions/elFinder/php/elFinderVolumeLocalFileSystem.class.php 2 locations

@@ 434-443 (lines=10) @@
431
	 * @return string|bool
432
	 * @author Dmitry (dio) Levashov
433
	 **/
434
	protected function _mkdir($path, $name) {
435
		$path = $path.DIRECTORY_SEPARATOR.$name;
436
437
		if (@mkdir($path)) {
438
			@chmod($path, $this->options['dirMode']);
439
			return $path;
440
		}
441
442
		return false;
443
	}
444
	
445
	/**
446
	 * Create file and return it's path or false on failed
@@ 453-462 (lines=10) @@
450
	 * @return string|bool
451
	 * @author Dmitry (dio) Levashov
452
	 **/
453
	protected function _mkfile($path, $name) {
454
		$path = $path.DIRECTORY_SEPARATOR.$name;
455
		
456
		if (($fp = @fopen($path, 'w'))) {
457
			@fclose($fp);
458
			@chmod($path, $this->options['fileMode']);
459
			return $path;
460
		}
461
		return false;
462
	}
463
	
464
	/**
465
	 * Create symlink