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 ( aa1c43...411235 )
by François
02:55
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.
example/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
     // the OAuth provider configuration
52 52
     $client->setProvider(
53 53
         new Provider(
54
-            'demo_client',                          // client_id
55
-            'demo_secret',                          // client_secret
56
-            'http://localhost:8080/authorize.php',  // authorization_uri
54
+            'demo_client', // client_id
55
+            'demo_secret', // client_secret
56
+            'http://localhost:8080/authorize.php', // authorization_uri
57 57
             'http://localhost:8080/token.php'       // token_uri
58 58
         )
59 59
     );
Please login to merge, or discard this patch.
example/callback.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
     // the OAuth provider configuration
52 52
     $client->setProvider(
53 53
         new Provider(
54
-            'demo_client',                          // client_id
55
-            'demo_secret',                          // client_secret
56
-            'http://localhost:8080/authorize.php',  // authorization_uri
54
+            'demo_client', // client_id
55
+            'demo_secret', // client_secret
56
+            'http://localhost:8080/authorize.php', // authorization_uri
57 57
             'http://localhost:8080/token.php'       // token_uri
58 58
         )
59 59
     );
Please login to merge, or discard this patch.