Repository URL to install this package:
|
Version:
6.2.3 ▾
|
<?php
declare(strict_types = 1);
namespace JMS\JobQueueBundle\Console;
use JMS\JobQueueBundle\Entity\Job;
use Symfony\Component\Console\Command\Command;
trait ScheduleHourly
{
use ScheduleInSecondInterval;
protected function getScheduleInterval(): int
{
return 3600;
}
}