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 ( 870d79...a1e45f )
by Baptiste
05:29
created
src/Set/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\Set;
5 5
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @param callable(T): void $function
95 95
      */
96
-    public function foreach(callable $function): void;
96
+    public function foreach (callable $function): void;
97 97
 
98 98
     /**
99 99
      * Return a new map of pairs grouped by keys determined with the given
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
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         return $set;
125 125
     }
126 126
 
127
-    public function foreach(callable $function): void
127
+    public function foreach (callable $function): void
128 128
     {
129 129
         $this->values->foreach($function);
130 130
     }
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
      * @return self<T>
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/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
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         return $self;
112 112
     }
113 113
 
114
-    public function foreach(callable $function): void
114
+    public function foreach (callable $function): void
115 115
     {
116 116
         foreach ($this->values as $value) {
117 117
             $function($value);
Please login to merge, or discard this patch.
src/ValidateArgument/UnionType.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/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\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.