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 ( a8e9a1...c7f753 )
by Romain
05:40
created
src/Strime/Slackify/Api/Files.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@
 block discarded – undo
319 319
             $client = new \GuzzleHttp\Client();
320 320
             $json_response = $client->request('POST', $this->getUrl(), [
321 321
                 'headers' => $headers,
322
-                'http_errors' => false,
322
+                'http_errors' => FALSE,
323 323
                 'json' => $post_content
324 324
             ]);
325 325
             $response = json_decode( $json_response->getBody() );
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Users.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
277 277
         try {
278 278
             $client = new \GuzzleHttp\Client();
279 279
             $json_response = $client->request('POST', $this->getUrl(), [
280
-                'http_errors' => false,
280
+                'http_errors' => FALSE,
281 281
                 'multipart' => $arguments
282 282
             ]);
283 283
             $response = json_decode( $json_response->getBody() );
Please login to merge, or discard this patch.