for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MGDigital\BusQue;
final class ReceivedScheduledCommand
{
private $queueName;
private $id;
private $serialized;
private $dateTime;
public function __construct(string $queueName, string $id, string $serialized, \DateTimeInterface $dateTime)
$this->queueName = $queueName;
$this->id = $id;
$this->serialized = $serialized;
$this->dateTime = $dateTime;
}
public function getQueueName(): string
return $this->queueName;
public function getId(): string
return $this->id;
public function getSerialized(): string
return $this->serialized;
public function getDateTime(): \DateTimeInterface
return $this->dateTime;