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 — develop ( dae846...5a798e )
by Baptiste
02:21
created
tests/Exception/ElementNotFoundTest.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\Exception;
5 5
 
Please login to merge, or discard this patch.
tests/Map/PrimitiveTest.php 1 patch
Spacing   +3 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 Tests\Innmind\Immutable\Map;
5 5
 
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
         $this->assertSame(1, $m2->size());
56 56
 
57 57
         $m = new Primitive('int', 'int');
58
-        $m = $m
59
-            (23, 24)
58
+        $m = $m(23, 24)
60 59
             (41, 42)
61 60
             (65, 66)
62 61
             (89, 90)
@@ -431,7 +430,7 @@  discard block
 block discarded – undo
431 430
 
432 431
         $v = $m->reduce(
433 432
             42,
434
-            function (float $carry, int $key, int $value): float {
433
+            function(float $carry, int $key, int $value): float {
435 434
                 return $carry / ($key * $value);
436 435
             }
437 436
         );
Please login to merge, or discard this patch.
tests/Map/ObjectKeysTest.php 1 patch
Spacing   +3 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 Tests\Innmind\Immutable\Map;
5 5
 
@@ -48,8 +48,7 @@  discard block
 block discarded – undo
48 48
         $this->assertSame(1, $m2->size());
49 49
 
50 50
         $m = new ObjectKeys('stdClass', 'int');
51
-        $m = $m
52
-            ($a = new \stdClass, 24)
51
+        $m = $m($a = new \stdClass, 24)
53 52
             ($b = new \stdClass, 42)
54 53
             ($c = new \stdClass, 66)
55 54
             ($d = new \stdClass, 90)
@@ -398,7 +397,7 @@  discard block
 block discarded – undo
398 397
 
399 398
         $v = $m->reduce(
400 399
             42,
401
-            function (float $carry, \stdClass $key, int $value): float {
400
+            function(float $carry, \stdClass $key, int $value): float {
402 401
                 return $carry / $value;
403 402
             }
404 403
         );
Please login to merge, or discard this patch.
tests/Map/DoubleIndexTest.php 1 patch
Spacing   +3 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 Tests\Innmind\Immutable\Map;
5 5
 
@@ -41,8 +41,7 @@  discard block
 block discarded – undo
41 41
         $this->assertSame(1, $m2->size());
42 42
 
43 43
         $m = new DoubleIndex('int', 'int');
44
-        $m = $m
45
-            (23, 24)
44
+        $m = $m(23, 24)
46 45
             (41, 42)
47 46
             (65, 66)
48 47
             (89, 90)
@@ -417,7 +416,7 @@  discard block
 block discarded – undo
417 416
 
418 417
         $v = $m->reduce(
419 418
             42,
420
-            function (float $carry, int $key, int $value): float {
419
+            function(float $carry, int $key, int $value): float {
421 420
                 return $carry / ($key * $value);
422 421
             }
423 422
         );
Please login to merge, or discard this patch.
tests/ValidateArgument/MixedTypeTest.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\ValidateArgument;
5 5
 
Please login to merge, or discard this patch.
tests/Sequence/PrimitiveTest.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\Sequence;
5 5
 
Please login to merge, or discard this patch.
tests/Sequence/DeferTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -618,7 +618,7 @@
 block discarded – undo
618 618
         $a = new Defer('int', (function() use (&$loaded) {
619 619
             yield 1;
620 620
             yield 2;
621
-           $loaded = true;
621
+            $loaded = true;
622 622
         })());
623 623
         $b = $a->clear();
624 624
 
Please login to merge, or discard this 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\Sequence;
5 5
 
Please login to merge, or discard this patch.
tests/Set/PrimitiveTest.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\Set;
5 5
 
Please login to merge, or discard this patch.
tests/Fixtures/SequenceTest.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\Fixtures;
5 5
 
Please login to merge, or discard this patch.