@@ -162,7 +162,7 @@ |
||
| 162 | 162 | /** |
| 163 | 163 | * @param array $data |
| 164 | 164 | * @param Form $form |
| 165 | - * @return HTTPResponse |
|
| 165 | + * @return \SilverStripe\Control\HTTPResponse |
|
| 166 | 166 | */ |
| 167 | 167 | public function createjob($data, Form $form) |
| 168 | 168 | { |
@@ -263,7 +263,7 @@ |
||
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | /** |
| 266 | - * @return FieldList |
|
| 266 | + * @return \SilverStripe\Forms\FieldList |
|
| 267 | 267 | */ |
| 268 | 268 | public function getCMSFields() |
| 269 | 269 | { |
@@ -104,7 +104,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -58,7 +58,7 @@ |
||
| 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 | { |
@@ -30,7 +30,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * |
| 152 | 152 | * @param QueuedJob $job |
| 153 | 153 | * The job to start. |
| 154 | - * @param $startAfter |
|
| 154 | + * @param string $startAfter |
|
| 155 | 155 | * The date (in Y-m-d H:i:s format) to start execution after |
| 156 | 156 | * @param int $userId |
| 157 | 157 | * The ID of a user to execute the job as. Defaults to the current user |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | /** |
| 205 | 205 | * Start a job (or however the queue handler determines it should be started) |
| 206 | 206 | * |
| 207 | - * @param JobDescriptor $jobDescriptor |
|
| 207 | + * @param QueuedJobDescriptor $jobDescriptor |
|
| 208 | 208 | * @param date $startAfter |
| 209 | 209 | */ |
| 210 | 210 | public function startJob($jobDescriptor, $startAfter = null) |
@@ -374,6 +374,7 @@ discard block |
||
| 374 | 374 | |
| 375 | 375 | /** |
| 376 | 376 | * Checks through ll the scheduled jobs that are expected to exist |
| 377 | + * @param string $queue |
|
| 377 | 378 | */ |
| 378 | 379 | public function checkDefaultJobs($queue = null) |
| 379 | 380 | { |
@@ -429,7 +430,7 @@ discard block |
||
| 429 | 430 | * Attempt to restart a stalled job |
| 430 | 431 | * |
| 431 | 432 | * @param QueuedJobDescriptor $stalledJob |
| 432 | - * @return bool True if the job was successfully restarted |
|
| 433 | + * @return boolean|null True if the job was successfully restarted |
|
| 433 | 434 | */ |
| 434 | 435 | protected function restartStalledJob($stalledJob) |
| 435 | 436 | { |
@@ -772,7 +773,7 @@ discard block |
||
| 772 | 773 | /** |
| 773 | 774 | * @param QueuedJobDescriptor $jobDescriptor |
| 774 | 775 | * @param Member|null $originalUser |
| 775 | - * @return null |
|
| 776 | + * @return null|Member |
|
| 776 | 777 | */ |
| 777 | 778 | protected function setRunAsUser(QueuedJobDescriptor $jobDescriptor, Member $originalUser = null) |
| 778 | 779 | { |
@@ -944,6 +945,9 @@ discard block |
||
| 944 | 945 | } |
| 945 | 946 | } |
| 946 | 947 | |
| 948 | + /** |
|
| 949 | + * @param double $size |
|
| 950 | + */ |
|
| 947 | 951 | protected function humanReadable($size) |
| 948 | 952 | { |
| 949 | 953 | $filesizename = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB"); |
@@ -959,7 +963,7 @@ discard block |
||
| 959 | 963 | * @param int $includeUpUntil |
| 960 | 964 | * The number of seconds to include jobs that have just finished, allowing a job list to be built that |
| 961 | 965 | * includes recently finished jobs |
| 962 | - * @return QueuedJobDescriptor |
|
| 966 | + * @return DataList |
|
| 963 | 967 | */ |
| 964 | 968 | public function getJobList($type = null, $includeUpUntil = 0) |
| 965 | 969 | { |