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 ( dc3756...ffde21 )
by Baptiste
06:26
created
src/Client/Channel/Basic/Basic.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     Transport\Frame,
20 20
     Transport\Frame\Channel
21 21
 };
22
-use Innmind\TimeContinuum\ElapsedPeriod;
23 22
 
24 23
 final class Basic implements BasicInterface
25 24
 {
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Consumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * - string $exchange
14 14
      * - string $routingKey
15 15
      */
16
-    public function foreach(callable $consume): void;
16
+    public function foreach (callable $consume): void;
17 17
 
18 18
     /**
19 19
      * Number of messages to process
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Consumer/Consumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * {@inheritdoc}
52 52
      */
53
-    public function foreach(callable $consume): void
53
+    public function foreach (callable $consume): void
54 54
     {
55 55
         if ($this->canceled) {
56 56
             return;
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Consumer/NullConsumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * {@inheritdoc}
12 12
      */
13
-    public function foreach(callable $consume): void
13
+    public function foreach (callable $consume): void
14 14
     {
15 15
         //pass
16 16
     }
Please login to merge, or discard this patch.
src/Client/Channel/Basic/Consumer/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 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.