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 ( 1aa213...c15ef7 )
by
unknown
02:04 queued 11s
created
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.
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/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.
src/Jobs/RunBuildTaskJob.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 class RunBuildTaskJob extends AbstractQueuedJob
21 21
 {
22 22
     /**
23
-     * @param DataObject $node
23
+     * @param string $queryString
24 24
      */
25 25
     public function __construct($taskClass = null, $queryString = null)
26 26
     {
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.
src/Services/DefaultQueueHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
         $job->activateOnQueue();
18 18
     }
19 19
 
20
+    /**
21
+     * @param string $date
22
+     */
20 23
     public function scheduleJob(QueuedJobDescriptor $job, $date)
21 24
     {
22 25
         // noop
Please login to merge, or discard this patch.
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.