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 ( e1c659...213b35 )
by Thomas
07:01
created
src/AtomicTempFileObject.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     /**
134 134
      * Easy access iterator apply for processing an entire file.
135 135
      *
136
-     * @param  Iterator $input    [description]
136
+     * @param  \Iterator $input    [description]
137 137
      * @param  callable $callback [description]
138 138
      */
139 139
     public function process(\Iterator $input, callable $callback)
@@ -169,8 +169,6 @@  discard block
 block discarded – undo
169 169
     /**
170 170
      * File comparison
171 171
      *
172
-     * @param string $filename
173
-     *   The file to check against.
174 172
      *
175 173
      * @return bool
176 174
      *   True if the contents of this file matches the contents of $filename.
Please login to merge, or discard this patch.
src/GlobStreamWrapper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
         self::$root = $root;
17 17
     }
18 18
 
19
+    /**
20
+     * @param string $path
21
+     */
19 22
     protected static function getRootedPath($path)
20 23
     {
21 24
         // Avoid infinite recursion.
Please login to merge, or discard this patch.
src/SortIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         parent::__construct($this->getSortedIterator($iterator));
28 28
     }
29 29
 
30
+    /**
31
+     * @param \Traversable $iterator
32
+     */
30 33
     public function getSortedIterator($iterator)
31 34
     {
32 35
         $sortedIterator = new \ArrayIterator();
Please login to merge, or discard this patch.
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.