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 ( fea049...d4e790 )
by herry
05:50 queued 05:42
created
src/Commands/AMQPCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,11 +79,11 @@
 block discarded – undo
79 79
                 ->setConsumerTag($this->consumerTag)
80 80
                 ->setAutoAck($this->autoAsk)
81 81
                 ->setRouteKey($this->routeKey)
82
-                ->consume(function ($message) {
82
+                ->consume(function($message) {
83 83
                     /** @var Message $message */
84 84
                     return static::processMessage($message);
85 85
                 });
86
-        } catch (InvalidArgumentException|ErrorException|Exception $exception) {
86
+        } catch (InvalidArgumentException | ErrorException | Exception $exception) {
87 87
             Log::error('AMQPMessage consume error:' . $exception->getMessage());
88 88
         }
89 89
     }
Please login to merge, or discard this patch.