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.
Passed
Push — master ( 67f430...0f4080 )
by Anton
06:59 queued 02:21
created
src/Executor/Master.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
             return 0;
183 183
         }
184 184
 
185
-        $callback = function (string $output) {
185
+        $callback = function(string $output) {
186 186
             $output = preg_replace('/\n$/', '', $output);
187 187
             if (strlen($output) !== 0) {
188 188
                 $this->output->writeln($output);
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         /** @var Process[] $processes */
193 193
         $processes = [];
194 194
 
195
-        $this->server->loop->futureTick(function () use (&$processes, $hosts, $task) {
195
+        $this->server->loop->futureTick(function() use (&$processes, $hosts, $task) {
196 196
             foreach ($hosts as $host) {
197 197
                 $processes[] = $this->createProcess($host, $task);
198 198
             }
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
             }
203 203
         });
204 204
 
205
-        $this->server->loop->addPeriodicTimer(0.03, function ($timer) use (&$processes, $callback) {
205
+        $this->server->loop->addPeriodicTimer(0.03, function($timer) use (&$processes, $callback) {
206 206
             $this->gatherOutput($processes, $callback);
207 207
             if ($this->output->isDecorated() && !getenv('CI')) {
208 208
                 $this->output->write(spinner());
Please login to merge, or discard this patch.