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
src/ValidateArgument/MixedType.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\ValidateArgument;
5 5
 
Please login to merge, or discard this patch.
src/ValidateArgument/NullableType.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\ValidateArgument;
5 5
 
Please login to merge, or discard this patch.
src/ValidateArgument/VariableType.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\ValidateArgument;
5 5
 
Please login to merge, or discard this patch.
src/ValidateArgument/ClassType.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\ValidateArgument;
5 5
 
Please login to merge, or discard this patch.
src/Sequence/Implementation.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
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @param callable(T): void $function
89 89
      */
90
-    public function foreach(callable $function): void;
90
+    public function foreach (callable $function): void;
91 91
 
92 92
     /**
93 93
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
src/Map.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
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      *
215 215
      * @param callable(T, S): void $function
216 216
      */
217
-    public function foreach(callable $function): void
217
+    public function foreach (callable $function): void
218 218
     {
219 219
         $this->implementation->foreach($function);
220 220
     }
Please login to merge, or discard this patch.
src/Set/Primitive.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
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * @param callable(T): void $function
170 170
      */
171
-    public function foreach(callable $function): void
171
+    public function foreach (callable $function): void
172 172
     {
173 173
         $this->values->foreach($function);
174 174
     }
Please login to merge, or discard this patch.
src/Set.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
 
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      *
240 240
      * @param callable(T): void $function
241 241
      */
242
-    public function foreach(callable $function): void
242
+    public function foreach (callable $function): void
243 243
     {
244 244
         $this->implementation->foreach($function);
245 245
     }
Please login to merge, or discard this patch.
src/Exception/EmptySet.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.