Merge branch 'MDL-79966-m401' of https://github.com/sammarshallou/moodle into MOODLE_401_STABLE

This commit is contained in:
Eloy Lafuente (stronk7) 2023-11-23 23:41:28 +01:00
commit 98a58ef44c
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 = '*';