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

@@ 379-381 (lines=3) @@
376
	        if ( $ierr = imap_errors() )
377
	                foreach ( $ierr as $thiserr )
378
	                        syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
379
	        if ( $ierr = imap_alerts() )
380
	                foreach ( $ierr as $thiserr )
381
	                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
382
		imap_close( $m_mail );
383
		if ( file_exists( $file ) ) unlink ($file);
384
		if ( file_exists( $filed ) ) unlink ($filed);
@@ 578-580 (lines=3) @@
575
	if ( $ierr = imap_errors() )
576
		foreach ( $ierr as $thiserr )
577
			syslog (LOG_ERR, $cf['syslog']['user'].": IMAP Error: $thiserr");
578
	if ( $ierr = imap_alerts() )
579
                foreach ( $ierr as $thiserr )
580
                        syslog (LOG_ALERT, $cf['syslog']['user'].": IMAP Alert: $thiserr");
581
	imap_close($m_mail);
582
}
583
?>