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 ( 48a667...4be32c )
by Baptiste
02:09
created
src/Set.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
      * {@inheritdoc}
193 193
      */
194
-    public function foreach(callable $function): SetInterface
194
+    public function foreach (callable $function): SetInterface
195 195
     {
196 196
         $this->values->foreach($function);
197 197
 
Please login to merge, or discard this patch.
src/SequenceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      *
90 90
      * @return self
91 91
      */
92
-    public function foreach(callable $function): self;
92
+    public function foreach (callable $function): self;
93 93
 
94 94
     /**
95 95
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
src/StreamInterface.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 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.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -210,7 +210,7 @@
 block discarded – undo
210 210
     /**
211 211
      * Append the given stream to the current one
212 212
      *
213
-     * @param self $stream
213
+     * @param Sequence $stream
214 214
      *
215 215
      * @return self<T>
216 216
      */
Please login to merge, or discard this patch.
src/Sequence.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
     /**
199 199
      * {@inheritdoc}
200 200
      */
201
-    public function foreach(callable $function): SequenceInterface
201
+    public function foreach (callable $function): SequenceInterface
202 202
     {
203 203
         foreach ($this->values as $value) {
204 204
             $function($value);
Please login to merge, or discard this patch.
src/Stream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
     /**
214 214
      * {@inheritdoc}
215 215
      */
216
-    public function foreach(callable $function): StreamInterface
216
+    public function foreach (callable $function): StreamInterface
217 217
     {
218 218
         $this->values->foreach($function);
219 219
 
Please login to merge, or discard this patch.
src/MapInterface.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@  discard block
 block discarded – undo
8 8
     /**
9 9
      * @param string $keyType Type T
10 10
      * @param string $valueType Type S
11
+     * @return void
11 12
      */
12 13
     public function __construct(string $keyType, string $valueType);
13 14
 
@@ -163,7 +164,7 @@  discard block
 block discarded – undo
163 164
     /**
164 165
      * Reduce the map to a single value
165 166
      *
166
-     * @param mixed $carry
167
+     * @param Map $carry
167 168
      * @param callable $reducer
168 169
      *
169 170
      * @return mixed
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 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/SetInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     /**
12 12
      * @param string $type Type T
13
+     * @return void
13 14
      */
14 15
     public function __construct(string $type);
15 16
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 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/Map.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     /**
242 242
      * {@inheritdoc}
243 243
      */
244
-    public function foreach(callable $function): MapInterface
244
+    public function foreach (callable $function): MapInterface
245 245
     {
246 246
         foreach ($this->pairs as $pair) {
247 247
             $function($pair->key(), $pair->value());
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
                 function(Stream $carry, $value): Stream {
321 321
                     return $carry->add($value);
322 322
                 }
323
-            );;
323
+            ); ;
324 324
     }
325 325
 
326 326
     /**
Please login to merge, or discard this patch.