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 ( e58d6d...11aae6 )
by
unknown
18:36 queued 01:03
created
src/Tasks/Engines/BaseRunner.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     /**
47 47
      * Logs the status of the queued job descriptor.
48 48
      *
49
-     * @param bool|null|QueuedJobDescriptor $descriptor
49
+     * @param \SilverStripe\ORM\DataObject|null $descriptor
50 50
      * @param string $queue
51 51
      */
52 52
     protected function logDescriptorStatus($descriptor, $queue)
Please login to merge, or discard this patch.
src/Tasks/Engines/DoormanRunner.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @return array List of rules
36
+     * @return string[] List of rules
37 37
      */
38 38
     public function getDefaultRules()
39 39
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @param string $queue
88
-     * @return null|QueuedJobDescriptor
88
+     * @return \SilverStripe\ORM\DataObject|null
89 89
      */
90 90
     protected function getNextJobDescriptorWithoutMutex($queue)
91 91
     {
Please login to merge, or discard this patch.
tests/ScheduledExecutionTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Symbiote\QueuedJobs\Tests;
4 4
 
5 5
 use DateTime;
6
-use SilverStripe\Dev\SapphireTest;
7 6
 use SilverStripe\ORM\DataObject;
8 7
 use SilverStripe\ORM\FieldType\DBDatetime;
9 8
 use Symbiote\QueuedJobs\Tests\ScheduledExecutionTest\TestScheduledDataObject;
Please login to merge, or discard this patch.