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 ( 3195ef...9cc825 )
by Joni
03:46
created
lib/JWX/JWK/JWKSet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 				"JWK Set must have a 'keys' member.");
64 64
 		}
65 65
 		$jwks = array_map(
66
-			function ($jwkdata) {
66
+			function($jwkdata) {
67 67
 				return JWK::fromArray($jwkdata);
68 68
 			}, $members["keys"]);
69 69
 		unset($members["keys"]);
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 	public function toArray() {
188 188
 		$data = $this->_additional;
189 189
 		$data["keys"] = array_map(
190
-			function (JWK $jwk) {
190
+			function(JWK $jwk) {
191 191
 				return $jwk->toArray();
192 192
 			}, $this->_jwks);
193 193
 		return $data;
Please login to merge, or discard this patch.