private static property CronRule::$ranges in Ultimate Cron 8
Same name and namespace in other branches
- 6 CronRule.class.php \CronRule::ranges
- 7.2 CronRule.class.php \CronRule::ranges
- 7 CronRule.class.php \CronRule::ranges
File
- ./
CronRule.class.php, line 12 - This class parses cron rules and determines last execution time using least case integer comparison.
Class
- CronRule
- @file
Code
private static $ranges = array(
'minutes' => array(
0,
59,
),
'hours' => array(
0,
23,
),
'days' => array(
1,
31,
),
'months' => array(
1,
12,
),
'weekdays' => array(
0,
6,
),
);