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
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.