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/Exception/InvalidRegex.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\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Either.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/Either/Implementation.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\Either;
5 5
 
Please login to merge, or discard this patch.
src/Monoid.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.
tests/MapTest.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 Tests\Innmind\Immutable;
5 5
 
Please login to merge, or discard this patch.
tests/SequenceTest.php 1 patch
Spacing   +3 added lines, -3 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 Tests\Innmind\Immutable;
5 5
 
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
             yield 4;
413 413
             $loaded = true;
414 414
         });
415
-        $b = $a->flatMap(static fn($i) => Sequence::of($i, $i*2));
415
+        $b = $a->flatMap(static fn($i) => Sequence::of($i, $i * 2));
416 416
 
417 417
         $this->assertFalse($loaded);
418 418
         $this->assertSame([1, 2, 2, 4, 3, 6, 4, 8], $b->toList());
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
             yield 4;
431 431
             $loaded = true;
432 432
         })());
433
-        $b = $a->flatMap(static fn($i) => Sequence::of($i, $i*2));
433
+        $b = $a->flatMap(static fn($i) => Sequence::of($i, $i * 2));
434 434
 
435 435
         $this->assertFalse($loaded);
436 436
         $this->assertSame([1, 2, 2, 4, 3, 6, 4, 8], $b->toList());
Please login to merge, or discard this patch.
tests/SetTest.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 Tests\Innmind\Immutable;
5 5
 
Please login to merge, or discard this patch.
tests/Monoid/MergeSetTest.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 Tests\Innmind\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
tests/EitherTest.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 Tests\Innmind\Immutable;
5 5
 
Please login to merge, or discard this patch.