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

@@ 392-394 (lines=3) @@
389
	fclose($fpb);
390
	syslog (LOG_INFO,$cf['user'].': Report files written. Listing job for '.$type.' terminated.');
391
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");
@@ 245-247 (lines=3) @@
242
	// Order results starting from newest message
243
	if ( empty($m_search) ) {
244
		syslog (LOG_INFO,$cf['user'].": No mail found in $type folder. No reports written for $type.");
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");

contrib/mailClassifier/function.php 1 location

@@ 38-40 (lines=3) @@
35
	// Order results starting from newest message
36
	if ( empty($m_search) ) {
37
		syslog (LOG_INFO,$cf['user'].": No suitable mail found in <$folder> folder.");
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");