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 ( 3d38f4...d523a5 )
by François
02:01
created
src/Http/CurlHttpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
             CURLOPT_HTTPHEADER => [],
107 107
             CURLOPT_FOLLOWLOCATION => false,
108 108
             CURLOPT_PROTOCOLS => $this->allowHttp ? CURLPROTO_HTTPS | CURLPROTO_HTTP : CURLPROTO_HTTPS,
109
-            CURLOPT_HEADERFUNCTION => function ($curlChannel, $headerData) use (&$headerList) {
109
+            CURLOPT_HEADERFUNCTION => function($curlChannel, $headerData) use (&$headerList) {
110 110
                 if (false !== strpos($headerData, ':')) {
111 111
                     list($key, $value) = explode(':', $headerData, 2);
112 112
                     $headerList[trim($key)] = trim($value);
Please login to merge, or discard this patch.