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 ( a0313d...5109b1 )
by Cees-Jan
03:24
created
src/NotAnEncodedResponseException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct($json)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '"" is not an encoded PSR-7 response');
11
+        parent::__construct('"'.json_encode($json).'"" is not an encoded PSR-7 response');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     $json = [];
71 71
     $json['protocol_version'] = $request->getProtocolVersion();
72 72
     $json['method'] = $request->getMethod();
73
-    $json['uri'] = (string)$request->getUri();
73
+    $json['uri'] = (string) $request->getUri();
74 74
     $json['headers'] = $request->getHeaders();
75 75
     $json['body'] = base64_encode($request->getBody()->getContents());
76 76
 
Please login to merge, or discard this patch.
src/NotAnEncodedRequestException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct($json)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '"" is not an encoded PSR-7 request');
11
+        parent::__construct('"'.json_encode($json).'"" is not an encoded PSR-7 request');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.