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 3 locations

contrib/ipImap/function.php 2 locations

@@ 395-397 (lines=3) @@
392
	if ( $ierr = imap_errors() )
393
		foreach ( $ierr as $thiserr )
394
			syslog (LOG_ERR, $cf['user'].": IMAP Error: $thiserr");
395
	if ( $ierr = imap_alerts() )
396
                foreach ( $ierr as $thiserr )
397
                        syslog (LOG_ALERT, $cf['user'].": IMAP Alert: $thiserr");
398
	imap_close($m_mail);
399
}
400
?>
@@ 248-250 (lines=3) @@
245
	        if ( $ierr = imap_errors() )
246
	                foreach ( $ierr as $thiserr )
247
	                        syslog (LOG_ERR, $cf['user'].": IMAP Error: $thiserr");
248
	        if ( $ierr = imap_alerts() )
249
	                foreach ( $ierr as $thiserr )
250
	                        syslog (LOG_ALERT, $cf['user'].": IMAP Alert: $thiserr");
251
		imap_close( $m_mail );
252
		if ( file_exists( $file ) ) unlink ($file);
253
		if ( file_exists( $fileb ) ) unlink ($fileb);

contrib/mailClassifier/function.php 1 location

@@ 41-43 (lines=3) @@
38
	        if ( $ierr = imap_errors() )
39
	                foreach ( $ierr as $thiserr )
40
	                        syslog (LOG_ERR, $cf['user'].": IMAP Error: $thiserr");
41
	        if ( $ierr = imap_alerts() )
42
	                foreach ( $ierr as $thiserr )
43
	                        syslog (LOG_ALERT, $cf['user'].": IMAP Alert: $thiserr");
44
		imap_close( $m_mail );
45
		return FALSE;
46
	}