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.
Completed
Push — master ( a6a2a3...83b34a )
by Marco
01:56
created
contrib/mailClassifier/function.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@  discard block
 block discarded – undo
56 56
 	return $head;
57 57
 }
58 58
 
59
+/**
60
+ * @param null|string $prob
61
+ * @param null|string $conf
62
+ */
59 63
 function dspamLevel($prob, $conf) {
60 64
 /* Calculate DSPAM Level as the Spamassassin Plugin */
61 65
 	if (is_null($prob) or is_null($conf)) return '-';
@@ -63,6 +67,9 @@  discard block
 block discarded – undo
63 67
 	return round(($t_prob + ($conf*100)) / 2);
64 68
 }
65 69
 
70
+/**
71
+ * @param string $classSpam
72
+ */
66 73
 function dspamType($classSpam) {
67 74
 	switch($classSpam) {
68 75
 		case 'HAM':
Please login to merge, or discard this patch.