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 ( c527a4...a9e022 )
by w3l
03:27
created
holt45.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@  discard block
 block discarded – undo
5 5
  * @example if(chk_get("s") == "a") instead of if(isset($_GET["s"]) && $_GET["s"] == "a")
6 6
  */
7 7
 function chk_get($key) {
8
-    if (!isset($_GET[$key])) {
9
-        return false;
10
-    }
11
-    return $_GET[$key];
8
+	if (!isset($_GET[$key])) {
9
+		return false;
10
+	}
11
+	return $_GET[$key];
12 12
 }
13 13
 
14 14
 /**
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
  * @example if(chk_post("s") == "a") instead of if(isset($_POST["s"]) && $_POST["s"] == "a")
18 18
  */
19 19
 function chk_post($key) {
20
-    if (!isset($_POST[$key])) {
21
-        return false;
22
-    }
23
-    return $_POST[$key];
20
+	if (!isset($_POST[$key])) {
21
+		return false;
22
+	}
23
+	return $_POST[$key];
24 24
 }
25 25
 
26 26
 /**
Please login to merge, or discard this patch.