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.
Completed
Push — develop ( a9ac2e...dd892e )
by Baptiste
02:27 queued 02:27
created
Category
tests/RegExpTest.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.
src/State.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/Maybe.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/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
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      *
140 140
      * @param callable(T, S): void $function
141 141
      */
142
-    public function foreach(callable $function): SideEffect
142
+    public function foreach (callable $function): SideEffect
143 143
     {
144 144
         return $this->implementation->foreach($function);
145 145
     }
Please login to merge, or discard this patch.
src/SideEffect.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/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
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      *
93 93
      * @param callable(T): void $function
94 94
      */
95
-    public function foreach(callable $function): SideEffect;
95
+    public function foreach (callable $function): SideEffect;
96 96
 
97 97
     /**
98 98
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
src/Sequence/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\Sequence;
5 5
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * @param callable(T): void $function
148 148
      */
149
-    public function foreach(callable $function): SideEffect
149
+    public function foreach (callable $function): SideEffect
150 150
     {
151 151
         foreach ($this->values as $value) {
152 152
             $function($value);
Please login to merge, or discard this patch.
src/Sequence/Lazy.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
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     /**
211 211
      * @param callable(T): void $function
212 212
      */
213
-    public function foreach(callable $function): SideEffect
213
+    public function foreach (callable $function): SideEffect
214 214
     {
215 215
         foreach ($this->iterator() as $value) {
216 216
             $function($value);
Please login to merge, or discard this patch.
src/Sequence/Defer.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
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     /**
188 188
      * @param callable(T): void $function
189 189
      */
190
-    public function foreach(callable $function): SideEffect
190
+    public function foreach (callable $function): SideEffect
191 191
     {
192 192
         foreach ($this->values as $value) {
193 193
             $function($value);
Please login to merge, or discard this patch.