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 ( fd806e...4ae511 )
by Baptiste
02:24
created
SequenceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      *
76 76
      * @return self
77 77
      */
78
-    public function foreach(\Closure $function): self;
78
+    public function foreach (\Closure $function): self;
79 79
 
80 80
     /**
81 81
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
MapInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      *
76 76
      * @return self
77 77
      */
78
-    public function foreach(\Closure $function): self;
78
+    public function foreach (\Closure $function): self;
79 79
 
80 80
     /**
81 81
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
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(\Closure $function): SequenceInterface
201
+    public function foreach (\Closure $function): SequenceInterface
202 202
     {
203 203
         foreach ($this->values as $value) {
204 204
             $function($value);
Please login to merge, or discard this patch.
Map.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@
 block discarded – undo
266 266
     /**
267 267
      * {@inheritdoc}
268 268
      */
269
-    public function foreach(\Closure $function): MapInterface
269
+    public function foreach (\Closure $function): MapInterface
270 270
     {
271 271
         foreach ($this->keys as $index => $key) {
272 272
             $function($key, $this->values->get($index));
Please login to merge, or discard this patch.
SetInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
      *
76 76
      * @return self
77 77
      */
78
-    public function foreach(\Closure $function): self;
78
+    public function foreach (\Closure $function): self;
79 79
 
80 80
     /**
81 81
      * Return a new map of pairs grouped by keys determined with the given
Please login to merge, or discard this patch.
Set.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     /**
192 192
      * {@inheritdoc}
193 193
      */
194
-    public function foreach(\Closure $function): SetInterface
194
+    public function foreach (\Closure $function): SetInterface
195 195
     {
196 196
         $this->values->foreach($function);
197 197
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
         $this->validate($set);
256 256
         $newSet = clone $this;
257 257
 
258
-        $set->foreach(function ($value) use (&$newSet) {
258
+        $set->foreach(function($value) use (&$newSet) {
259 259
             $newSet = $newSet->add($value);
260 260
         });
261 261
 
Please login to merge, or discard this patch.