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 ( 8da5b6...97fc4d )
by herry
03:21
created
src/AMQPManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
             false, $this->getAutoAck(),
296 296
             false,
297 297
             false,
298
-            function ($message) use ($processMessage) {
298
+            function($message) use ($processMessage) {
299 299
                 /** @var AMQPMessage $message */
300 300
                 $message = new Message($message);
301 301
                 return $processMessage($message);
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
          * @param AMQPChannel $channel
321 321
          * @param AbstractConnection $connection
322 322
          */
323
-        return function ($channel, $connection) {
323
+        return function($channel, $connection) {
324 324
             $channel->close();
325 325
             $connection->close();
326 326
         };
Please login to merge, or discard this patch.
src/Providers/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $this->mergeConfigFrom(
24 24
             dirname(__DIR__) . '/../config/amqp.php', 'amqp'
25 25
         );
26
-        $this->app->singleton(AMQPManager::class, function ($app) {
26
+        $this->app->singleton(AMQPManager::class, function($app) {
27 27
             return new AMQPManager($app);
28 28
         });
29 29
         $this->app->alias(AMQPManager::class, 'amqp');
Please login to merge, or discard this patch.
src/Message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      *
52 52
      * @return AMQPMessage
53 53
      */
54
-    public function getMessage(){
54
+    public function getMessage() {
55 55
         return $this->message;
56 56
     }
57 57
 
Please login to merge, or discard this patch.
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.