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
tests/Map/DoubleIndexTest.php 1 patch
Spacing   +2 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\Map;
5 5
 
@@ -35,8 +35,7 @@  discard block
 block discarded – undo
35 35
         $this->assertSame(1, $m2->size());
36 36
 
37 37
         $m = new DoubleIndex;
38
-        $m = $m
39
-            (23, 24)
38
+        $m = $m(23, 24)
40 39
             (41, 42)
41 40
             (65, 66)
42 41
             (89, 90)
Please login to merge, or discard this patch.
tests/Map/ObjectKeysTest.php 1 patch
Spacing   +2 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\Map;
5 5
 
@@ -36,8 +36,7 @@  discard block
 block discarded – undo
36 36
         $this->assertSame(1, $m2->size());
37 37
 
38 38
         $m = new ObjectKeys;
39
-        $m = $m
40
-            ($a = new \stdClass, 24)
39
+        $m = $m($a = new \stdClass, 24)
41 40
             ($b = new \stdClass, 42)
42 41
             ($c = new \stdClass, 66)
43 42
             ($d = new \stdClass, 90)
Please login to merge, or discard this patch.
tests/Map/PrimitiveTest.php 1 patch
Spacing   +2 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\Map;
5 5
 
@@ -35,8 +35,7 @@  discard block
 block discarded – undo
35 35
         $this->assertSame(1, $m2->size());
36 36
 
37 37
         $m = new Primitive;
38
-        $m = $m
39
-            (23, 24)
38
+        $m = $m(23, 24)
40 39
             (41, 42)
41 40
             (65, 66)
42 41
             (89, 90)
Please login to merge, or discard this patch.
tests/MaybeTest.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.
properties/Monoid/Identity.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 Properties\Innmind\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
properties/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 Properties\Innmind\Immutable;
5 5
 
Please login to merge, or discard this patch.
properties/Monoid/Associativity.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 Properties\Innmind\Immutable\Monoid;
5 5
 
Please login to merge, or discard this patch.
tests/Monoid/ConcatTest.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/Monoid/MergeMapTest.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.