We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can see which Jobs are due at a particular time by passing a DateTime object to ->getDueJobs():
DateTime
->getDueJobs()
$datetime = new \DateTime("2015-01-01 00:00:00"); $cron->getDueJobs($datetime);
You can also pass a DateTime object to ->runInForeground()/->runInBackground() to run jobs due at that particular time.
->runInForeground()
->runInBackground()
$datetime = new \DateTime("2015-01-01 00:00:00"); $cron->runInBackground($datetime);