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/mailClassifier/function.php 1 location

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

contrib/ipImap/function.php 2 locations

@@ 373-375 (lines=3) @@
370
	        if ( $ierr = imap_errors() )
371
	                foreach ( $ierr as $thiserr )
372
	                        syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
373
	        if ( $ierr = imap_alerts() )
374
	                foreach ( $ierr as $thiserr )
375
	                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
376
		imap_close( $m_mail );
377
		if ( file_exists( $file ) ) unlink ($file);
378
		if ( file_exists( $filed ) ) unlink ($filed);
@@ 572-574 (lines=3) @@
569
	if ( $ierr = imap_errors() )
570
		foreach ( $ierr as $thiserr )
571
			syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
572
	if ( $ierr = imap_alerts() )
573
                foreach ( $ierr as $thiserr )
574
                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
575
	imap_close($m_mail);
576
}
577
?>