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 ( 10059b...134283 )
by Cees-Jan
18s queued 10s
created
src/Signature/HmacSignature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
         ksort($data);
51 51
 
52
-        array_walk($data, function (&$value, $key) {
52
+        array_walk($data, function(&$value, $key) {
53 53
             $value = $key.'='.$value;
54 54
         });
55 55
 
Please login to merge, or discard this patch.
src/RequestSigning/RequestSigner.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      */
173 173
     private function generateAuthorizationheader(array $parameters): string
174 174
     {
175
-        array_walk($parameters, function (&$value, $key) {
175
+        array_walk($parameters, function(&$value, $key) {
176 176
             $value = rawurlencode($key).'="'.rawurlencode($value).'"';
177 177
         });
178 178
 
Please login to merge, or discard this patch.