This commit is contained in:
Eloy Lafuente (stronk7) 2023-11-23 23:40:30 +01:00
commit be5bafef04
No known key found for this signature in database
GPG Key ID: 53487A05E6228820

View File

@ -80,9 +80,10 @@ abstract class scheduled_task extends task_base {
const FIELD_DAYOFWEEK = 'dayofweek';
/**
* Time used for the next scheduled time when a task should never run. This is 3000-01-01 00:00 GMT.
* Time used for the next scheduled time when a task should never run. This is 2222-01-01 00:00 GMT
* which is a large time that still fits in 10 digits.
*/
const NEVER_RUN_TIME = 32503680000;
const NEVER_RUN_TIME = 7952342400;
/** @var string $hour - Pattern to work out the valid hours */
private $hour = '*';