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 — develop ( 8cc0dc...800d8a )
by Baptiste
03:38
created
benchmark/consumer.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
 use Innmind\AMQP\{
5 5
     Model\Queue\Declaration as Queue,
Please login to merge, or discard this patch.
benchmark/client.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
 require_once  __DIR__.'/../vendor/autoload.php';
5 5
 
Please login to merge, or discard this patch.
benchmark/producer.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
 use Innmind\AMQP\Model\{
5 5
     Queue\Declaration as Queue,
Please login to merge, or discard this patch.
benchmark/stream_tmp_produce.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
 use Innmind\AMQP\Model\{
5 5
     Queue\Declaration,
Please login to merge, or discard this patch.
src/Client/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;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Transaction/NullTransaction.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\Transaction;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/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;
5 5
 
Please login to merge, or discard this patch.
src/Client/Channel/Exchange.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;
5 5
 
@@ -10,6 +10,6 @@  discard block
 block discarded – undo
10 10
 
11 11
 interface Exchange
12 12
 {
13
-    public function declare(Declaration $command): self;
13
+    public function declare(Declaration$command): self;
14 14
     public function delete(Deletion $command): self;
15 15
 }
Please login to merge, or discard this patch.
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.