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 ( 7ab88f...fff013 )
by Baptiste
07:46
created
src/Accumulate.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;
5 5
 
Please login to merge, or discard this patch.
src/Map/DoubleIndex.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\Map;
5 5
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     /**
185 185
      * @param callable(T, S): void $function
186 186
      */
187
-    public function foreach(callable $function): void
187
+    public function foreach (callable $function): void
188 188
     {
189 189
         foreach ($this->pairs->iterator() as $pair) {
190 190
             $function($pair->key(), $pair->value());
Please login to merge, or discard this patch.
src/Sequence/Defer.php 1 patch
Spacing   +4 added lines, -4 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
 
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     /**
183 183
      * @param callable(T): void $function
184 184
      */
185
-    public function foreach(callable $function): void
185
+    public function foreach (callable $function): void
186 186
     {
187 187
         foreach ($this->values as $value) {
188 188
             $function($value);
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
     public function toSequenceOf(string $type, callable $mapper = null): Sequence
547 547
     {
548 548
         /** @psalm-suppress MissingParamType */
549
-        $mapper ??= static fn($v): \Generator => yield $v;
549
+        $mapper ?? = static fn($v): \Generator => yield $v;
550 550
 
551 551
         /** @psalm-suppress MissingClosureParamType */
552 552
         return Sequence::defer(
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
     public function toSetOf(string $type, callable $mapper = null): Set
574 574
     {
575 575
         /** @psalm-suppress MissingParamType */
576
-        $mapper ??= static fn($v): \Generator => yield $v;
576
+        $mapper ?? = static fn($v): \Generator => yield $v;
577 577
 
578 578
         /** @psalm-suppress MissingClosureParamType */
579 579
         return Set::defer(
Please login to merge, or discard this patch.
src/Sequence/Primitive.php 1 patch
Spacing   +4 added lines, -4 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
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * @param callable(T): void $function
156 156
      */
157
-    public function foreach(callable $function): void
157
+    public function foreach (callable $function): void
158 158
     {
159 159
         foreach ($this->values as $value) {
160 160
             $function($value);
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
     public function toSequenceOf(string $type, callable $mapper = null): Sequence
481 481
     {
482 482
         /** @psalm-suppress MissingParamType */
483
-        $mapper ??= static fn($v): \Generator => yield $v;
483
+        $mapper ?? = static fn($v): \Generator => yield $v;
484 484
 
485 485
         /** @var Sequence<ST> */
486 486
         $sequence = Sequence::of($type);
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
     public function toSetOf(string $type, callable $mapper = null): Set
505 505
     {
506 506
         /** @psalm-suppress MissingParamType */
507
-        $mapper ??= static fn($v): \Generator => yield $v;
507
+        $mapper ?? = static fn($v): \Generator => yield $v;
508 508
 
509 509
         /** @var Set<ST> */
510 510
         $set = Set::of($type);
Please login to merge, or discard this patch.