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 ( 4cfdac...86a3c4 )
by Cees-Jan
13s
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
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
 
159 159
     private function generateAuthorizationheader(array $parameters)
160 160
     {
161
-        array_walk($parameters, function (&$value, $key) {
161
+        array_walk($parameters, function(&$value, $key) {
162 162
             $value = rawurlencode($key).'="'.rawurlencode($value).'"';
163 163
         });
164 164
 
Please login to merge, or discard this patch.