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 ( 213b35...44b5b7 )
by Thomas
09:45 queued 03:03
created
src/AtomicTempFileObjects.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     public function splitCsvFile(\Iterator $input, callable $callback)
104 104
     {
105 105
         $callback = \Closure::fromCallable($callback);
106
-        $this->process($input, function ($row, $rowNum, $input, $output) use ($callback) {
106
+        $this->process($input, function($row, $rowNum, $input, $output) use ($callback) {
107 107
             if ($fileName = $callback($row)) {
108 108
                 if (!$output->isFileOpen($fileName)) {
109 109
                     $output->openFile($fileName)->fputcsv(array_keys($row));
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     {
127 127
         $callback = \Closure::fromCallable($callback);
128 128
         $input->rewind();
129
-        iterator_apply($input, function (\Iterator $iterator) use ($callback) {
129
+        iterator_apply($input, function(\Iterator $iterator) use ($callback) {
130 130
             $callback($iterator->current(), $iterator->key(), $iterator, $this);
131 131
             return true;
132 132
         }, [$input]);
Please login to merge, or discard this patch.
src/ShuffleIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         return $sortedIterator;
34 34
     }
35 35
 
36
+    /**
37
+     * @param \Traversable $iterator
38
+     */
36 39
     protected function generateElement($key, $value, $iterator)
37 40
     {
38 41
         return (object) ['key' => $key, 'current' => $value];
Please login to merge, or discard this patch.