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 ( fc5653...e1c659 )
by Thomas
23:54
created
src/Iterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         return $iterator->current();
41 41
     }
42 42
 
43
+    /**
44
+     * @return string
45
+     */
43 46
     public static function reduce(\Traversable $iterator, callable $callback, $initial = null)
44 47
     {
45 48
         $callback = \Closure::fromCallable($callback);
Please login to merge, or discard this patch.
src/ShuffleIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -12,6 +12,9 @@
 block discarded – undo
12 12
         parent::__construct($this->getShuffledIterator($iterator));
13 13
     }
14 14
 
15
+    /**
16
+     * @param \Traversable $iterator
17
+     */
15 18
     public function getShuffledIterator($iterator)
16 19
     {
17 20
         $sortedIterator = new \ArrayIterator();
Please login to merge, or discard this patch.
src/ChunkIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 
43 43
         // The outer iterator is a finite replaceable iterator with a condition
44 44
         // on the inner iterator not being empty.
45
-        parent::__construct(new InfiniteIterator(new ReplaceableIterator(), function ($iterator) {
45
+        parent::__construct(new InfiniteIterator(new ReplaceableIterator(), function($iterator) {
46 46
             return !$iterator->current()->valid();
47 47
         }));
48 48
     }
Please login to merge, or discard this patch.