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.
Test Failed
Push — master ( ad9467...485ef5 )
by Shobi
03:38 queued 01:34
created
src/Search.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $response = $this->send(new StartSearchChannelCommand($password));
33 33
 
34 34
         if ($bufferSize = $response->get('bufferSize')) {
35
-            $this->bufferSize = (int)$bufferSize;
35
+            $this->bufferSize = (int) $bufferSize;
36 36
         }
37 37
 
38 38
         return $response;
Please login to merge, or discard this patch.
src/Ingest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $response = $this->send(new StartIngestChannelCommand($password));
36 36
 
37 37
         if ($bufferSize = $response->get('bufferSize')) {
38
-            $this->bufferSize = (int)$bufferSize;
38
+            $this->bufferSize = (int) $bufferSize;
39 39
         }
40 40
 
41 41
         return $response;
Please login to merge, or discard this patch.
src/Control.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $response = $this->send(new StartControlChannelCommand($password = 'SecretPassword'));
32 32
 
33 33
         if ($bufferSize = $response->get('bufferSize')) {
34
-            $this->bufferSize = (int)$bufferSize;
34
+            $this->bufferSize = (int) $bufferSize;
35 35
         }
36 36
 
37 37
         return $response;
Please login to merge, or discard this patch.