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 ( 2ceeac...125400 )
by Alex
03:05
created
src/Consumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
             throw new ConsumerNotProperlyConfigured('Worker is not defined.');
121 121
         }
122 122
 
123
-        $wrapper = function (AMQPMessage $message) {
123
+        $wrapper = function(AMQPMessage $message) {
124 124
             $result = call_user_func($this->worker, $message->getBody());
125 125
 
126 126
             if ($result && $this->producer) {
Please login to merge, or discard this patch.
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.