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 ( 92c654...f7553c )
by Cees-Jan
04:04
created
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, $field)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '" is not an encoded PSR-7 request, field "' . $field . '" is missing');
11
+        parent::__construct('"'.json_encode($json).'" is not an encoded PSR-7 request, field "'.$field.'" is missing');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
src/NotAnEncodedUploadedFileException.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, $field)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '" is not an encoded PSR-7 uploaded file, field "' . $field . '" is missing');
11
+        parent::__construct('"'.json_encode($json).'" is not an encoded PSR-7 uploaded file, field "'.$field.'" is missing');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
src/NotAnEncodedServerRequestException.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, $field)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '" is not an encoded PSR-7 server request, field "' . $field . '" is missing');
11
+        parent::__construct('"'.json_encode($json).'" is not an encoded PSR-7 server request, field "'.$field.'" is missing');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
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, $field)
10 10
     {
11
-        parent::__construct('"' . json_encode($json) . '" is not an encoded PSR-7 response, field "' . $field . '" is missing');
11
+        parent::__construct('"'.json_encode($json).'" is not an encoded PSR-7 response, field "'.$field.'" is missing');
12 12
     }
13 13
 }
Please login to merge, or discard this patch.