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 ( 6641a2...9a685f )
by Baptiste
02:27
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 2 patches
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.
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,6 +5,9 @@  discard block
 block discarded – undo
5 5
 
6 6
 interface MapInterface extends SizeableInterface, \Countable, \Iterator, \ArrayAccess
7 7
 {
8
+    /**
9
+     * @return void
10
+     */
8 11
     public function __construct(string $keyType, string $valueType);
9 12
 
10 13
     /**
@@ -88,7 +91,7 @@  discard block
 block discarded – undo
88 91
     /**
89 92
      * Filter the map based on the given predicate
90 93
      *
91
-     * @param Closure $predicate
94
+     * @param \Closure $predicate
92 95
      *
93 96
      * @return self
94 97
      */
@@ -97,7 +100,7 @@  discard block
 block discarded – undo
97 100
     /**
98 101
      * Run the given function for each element of the map
99 102
      *
100
-     * @param Closure $function
103
+     * @param \Closure $function
101 104
      *
102 105
      * @return self
103 106
      */
@@ -107,7 +110,7 @@  discard block
 block discarded – undo
107 110
      * Return a new map of pairs' sequences grouped by keys determined with the given
108 111
      * discriminator function
109 112
      *
110
-     * @param Closure $discriminator
113
+     * @param \Closure $discriminator
111 114
      *
112 115
      * @return self
113 116
      */
@@ -146,7 +149,7 @@  discard block
 block discarded – undo
146 149
      *
147 150
      * Keys can't be modified
148 151
      *
149
-     * @param Closure $function
152
+     * @param \Closure $function
150 153
      *
151 154
      * @return self
152 155
      */
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 2 patches
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.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@
 block discarded – undo
8 8
  */
9 9
 interface SetInterface extends SizeableInterface, PrimitiveInterface, \Countable, \Iterator
10 10
 {
11
+    /**
12
+     * @return void
13
+     */
11 14
     public function __construct(string $type);
12 15
 
13 16
     /**
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.