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.
Passed
Push — master ( a5de13...1bd82d )
by Alex
14:24
created
src/Producer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
     {
52 52
         $this->connection = $connection;
53 53
 
54
-        $this->withFormatter(function ($message) {
55
-            return (string)$message;
54
+        $this->withFormatter(function($message) {
55
+            return (string) $message;
56 56
         });
57 57
     }
58 58
 
Please login to merge, or discard this patch.
src/Consumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
 
132 132
         $this->producer && $this->producer->selfCheck();
133 133
 
134
-        $wrapper = function (AMQPMessage $message) {
134
+        $wrapper = function(AMQPMessage $message) {
135 135
             $result = call_user_func($this->worker, $message->getBody());
136 136
 
137 137
             if ($result && $this->producer) {
Please login to merge, or discard this patch.