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 — develop ( 54fc0a...e78518 )
by Baptiste
03:59
created
src/Client/Channel/Queue/NullQueue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Queue;
5 5
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     /**
21 21
      * {@inheritdoc}
22 22
      */
23
-    public function declare(Declaration $command): ?DeclareOk
23
+    public function declare(Declaration$command): ?DeclareOk
24 24
     {
25 25
         return null;
26 26
     }
Please login to merge, or discard this patch.
src/Client/Channel/Queue/Queue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Queue;
5 5
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $this->channel = $channel;
30 30
     }
31 31
 
32
-    public function declare(Declaration $command): ?DeclareOk
32
+    public function declare(Declaration$command): ?DeclareOk
33 33
     {
34 34
         $this->connection->send(
35 35
             $this->connection->protocol()->queue()->declare(
Please login to merge, or discard this patch.
src/Client/Channel/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Basic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Get/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic\Get;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Get/GetOk.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic\Get;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Get/GetEmpty.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic\Get;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Consumer/Logger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Innmind\AMQP\Client\Channel\Basic\Consumer;
5 5
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * {@inheritdoc}
30 30
      */
31
-    public function foreach(callable $consume): void
31
+    public function foreach (callable $consume): void
32 32
     {
33 33
         $this->consumer->foreach(function(Message $message, ...$args) use ($consume): void {
34 34
             try {
Please login to merge, or discard this patch.