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
Pull Request — develop (#5)
by Nicolas
04:45
created
src/SpecificationInterface.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/Specification/PrimitiveType.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\Specification;
5 5
 
Please login to merge, or discard this patch.
src/Specification/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\Specification;
5 5
 
Please login to merge, or discard this patch.
src/Specification/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\Specification;
5 5
 
Please login to merge, or discard this patch.
src/Map/ObjectKeys.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
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * {@inheritdoc}
249 249
      */
250
-    public function foreach(callable $function): MapInterface
250
+    public function foreach (callable $function): MapInterface
251 251
     {
252 252
         foreach ($this->values as $k) {
253 253
             $v = $this->values[$k];
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
 
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
     /**
253 253
      * {@inheritdoc}
254 254
      */
255
-    public function foreach(callable $function): MapInterface
255
+    public function foreach (callable $function): MapInterface
256 256
     {
257 257
         foreach ($this->pairs as $pair) {
258 258
             $function($pair->key(), $pair->value());
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
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
     /**
238 238
      * {@inheritdoc}
239 239
      */
240
-    public function foreach(callable $function): MapInterface
240
+    public function foreach (callable $function): MapInterface
241 241
     {
242 242
         $this->implementation->foreach($function);
243 243
 
Please login to merge, or discard this patch.
benchmarks/MapPrimitiveBench.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
 use Innmind\Immutable\Map;
5 5
 
Please login to merge, or discard this patch.
benchmarks/MapObjectBench.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
 use Innmind\Immutable\Map;
5 5
 
Please login to merge, or discard this patch.