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 ( 6956e2...9a55f0 )
by
unknown
02:08
created
src/DataObjects/QueuedJobDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
     }
264 264
 
265 265
     /**
266
-     * @return FieldList
266
+     * @return \SilverStripe\Forms\FieldList
267 267
      */
268 268
     public function getCMSFields()
269 269
     {
Please login to merge, or discard this patch.
src/Forms/GridFieldQueuedJobExecute.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      * Which columns are handled by this component
105 105
      *
106 106
      * @param GridField $gridField
107
-     * @return array
107
+     * @return string[]
108 108
      */
109 109
     public function getColumnsHandled($gridField)
110 110
     {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * Which GridField actions are this component handling
116 116
      *
117 117
      * @param GridField $gridField
118
-     * @return array
118
+     * @return string[]
119 119
      */
120 120
     public function getActions($gridField)
121 121
     {
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * @param GridField $gridField
127 127
      * @param DataObject $record
128 128
      * @param string $columnName
129
-     * @return string|void - the HTML for the column
129
+     * @return null|\SilverStripe\ORM\FieldType\DBHTMLText - the HTML for the column
130 130
      */
131 131
     public function getColumnContent($gridField, $record, $columnName)
132 132
     {
Please login to merge, or discard this patch.
src/Jobs/CleanupJob.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
     /**
60 60
      * Required because we aren't extending object
61
-     * @return Config_ForClass
61
+     * @return \SilverStripe\Core\Config\Config_ForClass
62 62
      */
63 63
     public function config()
64 64
     {
Please login to merge, or discard this patch.
src/Tasks/CreateQueuedJobTask.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use SilverStripe\Core\ClassInfo;
6 6
 use SilverStripe\Dev\BuildTask;
7
-use Symbiote\QueuedJobs\Services\AbstractQueuedJob;
8 7
 use Symbiote\QueuedJobs\Services\QueuedJobService;
9 8
 
10 9
 /**
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
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @return array List of rules
33
+     * @return string List of rules
34 34
      */
35 35
     public function getDefaultRules()
36 36
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     /**
81 81
      * @param string $queue
82
-     * @return null|QueuedJobDescriptor
82
+     * @return \SilverStripe\ORM\DataObject|null
83 83
      */
84 84
     protected function getNextJobDescriptorWithoutMutex($queue)
85 85
     {
Please login to merge, or discard this patch.
src/Tasks/ProcessJobQueueChildTask.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Symbiote\QueuedJobs\Tasks;
4 4
 
5
-use AsyncPHP\Doorman\Handler;
6
-use AsyncPHP\Doorman\Task;
7 5
 use SilverStripe\Dev\BuildTask;
8 6
 
9 7
 class ProcessJobQueueChildTask extends BuildTask
Please login to merge, or discard this patch.
tests/CleanupJobTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Symbiote\QueuedJobs\Tests;
4 4
 
5
-use SilverStripe\Dev\SapphireTest;
6 5
 use SilverStripe\Core\Config\Config;
7 6
 use SilverStripe\ORM\FieldType\DBDatetime;
8 7
 use Symbiote\QueuedJobs\Jobs\CleanupJob;
Please login to merge, or discard this patch.
tests/QueuedJobsTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Symbiote\QueuedJobs\Tests;
4 4
 
5
-use SilverStripe\Dev\SapphireTest;
6 5
 use SilverStripe\Core\Config\Config;
7 6
 use SilverStripe\ORM\DataList;
8 7
 use SilverStripe\ORM\DataObject;
Please login to merge, or discard this patch.
tests/QueuedJobsAdminTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Symbiote\QueuedJobs\Tests;
4 4
 
5
-use SilverStripe\Core\Config\Config;
6 5
 use SilverStripe\Control\HTTPRequest;
7 6
 use SilverStripe\Dev\FunctionalTest;
8 7
 use SilverStripe\Forms\FieldList;
Please login to merge, or discard this patch.