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
MapInterface.php 1 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.
SetInterface.php 1 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.