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
Branch develop (e41bc0)
by Baptiste
05:34
created
src/Exception/RuntimeException.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/SizeableInterface.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/Sequence.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
 
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     /**
212 212
      * {@inheritdoc}
213 213
      */
214
-    public function foreach(callable $function): SequenceInterface
214
+    public function foreach (callable $function): SequenceInterface
215 215
     {
216 216
         foreach ($this->values as $value) {
217 217
             $function($value);
Please login to merge, or discard this patch.
src/StreamInterface.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
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      *
86 86
      * @return self<T>
87 87
      */
88
-    public function foreach(callable $function): self;
88
+    public function foreach (callable $function): self;
89 89
 
90 90
     /**
91 91
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
src/MapInterface.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
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @return self<T, S>
89 89
      */
90
-    public function foreach(callable $function): self;
90
+    public function foreach (callable $function): self;
91 91
 
92 92
     /**
93 93
      * Return a new map of pairs' sequences grouped by keys determined with the given
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
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
     /**
220 220
      * {@inheritdoc}
221 221
      */
222
-    public function foreach(callable $function): SetInterface
222
+    public function foreach (callable $function): SetInterface
223 223
     {
224 224
         $this->values->foreach($function);
225 225
 
Please login to merge, or discard this patch.
src/Specification/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\Specification;
5 5
 
Please login to merge, or discard this patch.
src/Stream.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
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     /**
225 225
      * {@inheritdoc}
226 226
      */
227
-    public function foreach(callable $function): StreamInterface
227
+    public function foreach (callable $function): StreamInterface
228 228
     {
229 229
         $this->values->foreach($function);
230 230
 
Please login to merge, or discard this patch.
src/SequenceInterface.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
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      *
88 88
      * @return self
89 89
      */
90
-    public function foreach(callable $function): self;
90
+    public function foreach (callable $function): self;
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.