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
src/Transport/Protocol/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\Transport\Protocol;
5 5
 
@@ -12,6 +12,6 @@  discard block
 block discarded – undo
12 12
 
13 13
 interface Exchange
14 14
 {
15
-    public function declare(FrameChannel $channel, Declaration $command): Frame;
15
+    public function declare(FrameChannel$channel,Declaration$command): Frame;
16 16
     public function delete(FrameChannel $channel, Deletion $command): Frame;
17 17
 }
Please login to merge, or discard this patch.
src/Transport/Protocol/v091/Protocol.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\Transport\Protocol\v091;
5 5
 
Please login to merge, or discard this patch.
src/Transport/Protocol/v091/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\Transport\Protocol\v091;
5 5
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $this->translate = $translator;
33 33
     }
34 34
 
35
-    public function declare(FrameChannel $channel, Declaration $command): Frame
35
+    public function declare(FrameChannel$channel,Declaration$command): Frame
36 36
     {
37 37
         return Frame::method(
38 38
             $channel,
Please login to merge, or discard this patch.
src/Transport/Protocol/v091/Reader/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\Transport\Protocol\v091\Reader;
5 5
 
Please login to merge, or discard this patch.
src/Transport/Protocol/v091/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\Transport\Protocol\v091;
5 5
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $this->translate = $translator;
37 37
     }
38 38
 
39
-    public function declare(FrameChannel $channel, Declaration $command): Frame
39
+    public function declare(FrameChannel$channel,Declaration$command): Frame
40 40
     {
41 41
         $name = '';
42 42
 
Please login to merge, or discard this patch.
src/Transport/Protocol/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\Transport\Protocol;
5 5
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 interface Queue
17 17
 {
18
-    public function declare(FrameChannel $channel, Declaration $command): Frame;
18
+    public function declare(FrameChannel$channel,Declaration$command): Frame;
19 19
     public function delete(FrameChannel $channel, Deletion $command): Frame;
20 20
     public function bind(FrameChannel $channel, Binding $command): Frame;
21 21
     public function unbind(FrameChannel $channel, Unbinding $command): Frame;
Please login to merge, or discard this patch.
src/TimeContinuum/Format/Timestamp.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\TimeContinuum\Format;
5 5
 
Please login to merge, or discard this patch.
src/Model/Queue/Declaration.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\Model\Queue;
5 5
 
Please login to merge, or discard this patch.
src/Model/Basic/Reject.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\Model\Basic;
5 5
 
Please login to merge, or discard this patch.