Repository URL to install this package:
|
Version:
6.2.3 ▾
|
<?php
declare(strict_types = 1);
namespace JMS\JobQueueBundle\Console;
use JMS\JobQueueBundle\Entity\Job;
interface CronCommand
{
/**
* Returns the job when this command is scheduled.
*
* @return Job
*/
public function createCronJob(\DateTime $lastRunAt): Job;
/**
* Returns whether this command should be scheduled.
*
* @return boolean
*/
public function shouldBeScheduled(\DateTime $lastRunAt): bool;
}