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 ( 5df319...df6192 )
by Simon
02:40
created
src/Console/RebuildProjectionsCommand.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Illuminate\Database\DatabaseManager;
8 8
 use SmoothPhp\Contracts\EventDispatcher\EventDispatcher;
9 9
 use SmoothPhp\Contracts\Serialization\Serializer;
10
-use SmoothPhp\Serialization\Exception\SerializedClassDoesNotExist;
11 10
 
12 11
 /**
13 12
  * Class RebuildProjectionsCommand
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,8 +118,8 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param $start
122
-     * @param $take
121
+     * @param integer $start
122
+     * @param integer $take
123 123
      * @return \stdClass
124 124
      */
125 125
     private function getFromEventStore($start, $take)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
         }
115 115
         $this->output->progressFinish();
116 116
 
117
-        $this->output->write((memory_get_peak_usage(true) / 1024 / 1024) . " MiB", false);
117
+        $this->output->write((memory_get_peak_usage(true) / 1024 / 1024)." MiB", false);
118 118
     }
119 119
 
120 120
     /**
Please login to merge, or discard this patch.