for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MGDigital\BusQue\Handler;
use MGDigital\BusQue\ScheduledCommand;
class ScheduledCommandHandler extends AbstractHandler
{
public function handleScheduledCommand(ScheduledCommand $command)
list($queueName, $id, $serialized) = $this->process($command);
$this->implementation->getSchedulerDriver()
->scheduleCommand($queueName, $id, $serialized, $command->getDateTime());
}