Home
last modified time | relevance | path

Searched refs:getNextRunDate (Results 1 – 4 of 4) sorted by relevance

/plugin/combo/vendor/dragonmantank/cron-expression/tests/Cron/
DCronExpressionTest.php204 $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/
DREADME.md35 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/
DCron.php20 return $cron->getNextRunDate();
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
DCronExpression.php194 public function getNextRunDate($currentTime = 'now', $nth = 0, $allowCurrentDate = false) function in Cron\\CronExpression
304 return $this->getNextRunDate($currentDate, 0, true)->getTimestamp() == $currentTime;