Searched refs:getNextRunDate (Results 1 – 4 of 4) sorted by relevance
/plugin/combo/vendor/dragonmantank/cron-expression/tests/Cron/ |
D | CronExpressionTest.php | 204 $next = $cron->getNextRunDate($relativeTime, 0, true); 253 $next = $cron->getNextRunDate('now'); 254 $two = $cron->getNextRunDate('now', 1); 258 $next = $cron->getNextRunDate('now'); 259 $two = $cron->getNextRunDate('now', 1); 263 $next = $cron->getNextRunDate('now'); 264 $two = $cron->getNextRunDate('now', 1); 309 $nextRun = $cron->getNextRunDate("2008-11-09 08:00:00"); 313 $nextRun = $cron->getNextRunDate("2008-11-09 00:00:00", true, true); 317 … $nextRun = $cron->getNextRunDate($cron->getNextRunDate("2008-11-09 00:00:00", 1, true), 1, true); [all …]
|
/plugin/combo/vendor/dragonmantank/cron-expression/ |
D | README.md | 35 echo $cron->getNextRunDate()->format('Y-m-d H:i:s'); 40 echo $cron->getNextRunDate()->format('Y-m-d H:i:s'); 44 echo $cron->getNextRunDate(null, 2)->format('Y-m-d H:i:s'); 48 echo $cron->getNextRunDate('2010-01-12 00:00:00')->format('Y-m-d H:i:s');
|
/plugin/combo/ComboStrap/ |
D | Cron.php | 20 return $cron->getNextRunDate();
|
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/ |
D | CronExpression.php | 194 public function getNextRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false) function in Cron\\CronExpression 304 return $this->getNextRunDate($currentDate, 0, true)->getTimestamp() == $currentTime;
|