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.
Passed
Push — master ( 5109b1...d4f75a )
by Cees-Jan
02:08
created
src/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     $json = [];
74 74
     $json['protocol_version'] = $request->getProtocolVersion();
75 75
     $json['method'] = $request->getMethod();
76
-    $json['uri'] = (string)$request->getUri();
76
+    $json['uri'] = (string) $request->getUri();
77 77
     $json['headers'] = $request->getHeaders();
78 78
     $json['body'] = base64_encode($request->getBody()->getContents());
79 79
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     $json = [];
144 144
     $json['protocol_version'] = $request->getProtocolVersion();
145 145
     $json['method'] = $request->getMethod();
146
-    $json['uri'] = (string)$request->getUri();
146
+    $json['uri'] = (string) $request->getUri();
147 147
     $json['query_params'] = $request->getQueryParams();
148 148
     $json['cookie_params'] = $request->getCookieParams();
149 149
     $json['server_params'] = $request->getServerParams();
Please login to merge, or discard this patch.