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 ( 62e449...7b8869 )
by Baptiste
07:10
created
src/MapInterface.php 1 patch
Doc Comments   +4 added lines, -1 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
     /**
@@ -209,7 +212,7 @@  discard block
 block discarded – undo
209 212
     /**
210 213
      * Reduce the map to a single value
211 214
      *
212
-     * @param mixed $carry
215
+     * @param Map $carry
213 216
      * @param callable $reducer
214 217
      *
215 218
      * @return mixed
Please login to merge, or discard this patch.
src/SetInterface.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@  discard block
 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
     /**
@@ -149,7 +152,7 @@  discard block
 block discarded – undo
149 152
     /**
150 153
      * Reduce the set to a single value
151 154
      *
152
-     * @param mixed $carry
155
+     * @param Set $carry
153 156
      * @param callable $reducer
154 157
      *
155 158
      * @return mixed
Please login to merge, or discard this patch.