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 ( 51ca38...6b2fc4 )
by Baptiste
08:24 queued 05:19
created
src/Sequence/Defer.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\Immutable\Sequence;
5 5
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * @param callable(T): void $function
148 148
      */
149
-    public function foreach(callable $function): SideEffect
149
+    public function foreach (callable $function): SideEffect
150 150
     {
151 151
         foreach ($this->values as $value) {
152 152
             $function($value);
Please login to merge, or discard this patch.
src/Monoid/MergeMap.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\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
src/Monoid/MergeSet.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\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
src/Monoid/Concat.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\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
src/Sequence.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\Immutable;
5 5
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      *
254 254
      * @param callable(T): void $function
255 255
      */
256
-    public function foreach(callable $function): SideEffect
256
+    public function foreach (callable $function): SideEffect
257 257
     {
258 258
         return $this->implementation->foreach($function);
259 259
     }
Please login to merge, or discard this patch.
src/Set/Defer.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\Immutable\Set;
5 5
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     /**
146 146
      * @param callable(T): void $function
147 147
      */
148
-    public function foreach(callable $function): SideEffect
148
+    public function foreach (callable $function): SideEffect
149 149
     {
150 150
         return $this->values->foreach($function);
151 151
     }
Please login to merge, or discard this patch.
src/Set/Lazy.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\Immutable\Set;
5 5
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     /**
146 146
      * @param callable(T): void $function
147 147
      */
148
-    public function foreach(callable $function): SideEffect
148
+    public function foreach (callable $function): SideEffect
149 149
     {
150 150
         return $this->values->foreach($function);
151 151
     }
Please login to merge, or discard this patch.
src/Maybe/Nothing.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\Immutable\Maybe;
5 5
 
Please login to merge, or discard this patch.
src/Maybe/Just.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\Immutable\Maybe;
5 5
 
Please login to merge, or discard this patch.