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/elFinder/php/connector.php 2 locations

@@ 132-134 (lines=3) @@
129
	public function log($cmd, $result, $args, $elfinder) {
130
		$log = $cmd.' ['.date('d.m H:s')."]\n";
131
		
132
		if (!empty($result['error'])) {
133
			$log .= "\tERROR: ".implode(' ', $result['error'])."\n";
134
		}
135
		
136
		if (!empty($result['warning'])) {
137
			$log .= "\tWARNING: ".implode(' ', $result['warning'])."\n";
@@ 136-138 (lines=3) @@
133
			$log .= "\tERROR: ".implode(' ', $result['error'])."\n";
134
		}
135
		
136
		if (!empty($result['warning'])) {
137
			$log .= "\tWARNING: ".implode(' ', $result['warning'])."\n";
138
		}
139
		
140
		if (!empty($result['removed'])) {
141
			foreach ($result['removed'] as $file) {