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 — master ( 3fd0c3...e8feac )
by Baptiste
02:21
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
     /**
186 186
      * {@inheritdoc}
187 187
      */
188
-    public function foreach(\Closure $function): SetInterface
188
+    public function foreach (\Closure $function): SetInterface
189 189
     {
190 190
         $this->values->foreach($function);
191 191
 
Please login to merge, or discard this patch.