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
Pull Request — master (#234)
by Robbie
02:00
created
src/Services/QueuedJobService.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -389,6 +389,7 @@  discard block
 block discarded – undo
389 389
 
390 390
     /**
391 391
      * Checks through ll the scheduled jobs that are expected to exist
392
+     * @param string $queue
392 393
      */
393 394
     public function checkDefaultJobs($queue = null)
394 395
     {
@@ -475,7 +476,7 @@  discard block
 block discarded – undo
475 476
      *
476 477
      * @param QueuedJobDescriptor $stalledJob
477 478
      *
478
-     * @return bool True if the job was successfully restarted
479
+     * @return boolean|null True if the job was successfully restarted
479 480
      */
480 481
     protected function restartStalledJob($stalledJob)
481 482
     {
@@ -1042,6 +1043,9 @@  discard block
 block discarded – undo
1042 1043
         }
1043 1044
     }
1044 1045
 
1046
+    /**
1047
+     * @param double $size
1048
+     */
1045 1049
     protected function humanReadable($size)
1046 1050
     {
1047 1051
         $filesizename = [" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB"];
Please login to merge, or discard this patch.