| 1 | <?php |
||
| 5 | final class ReceivedScheduledCommand |
||
| 6 | { |
||
| 7 | |||
| 8 | private $queueName; |
||
| 9 | private $id; |
||
| 10 | private $serialized; |
||
| 11 | private $dateTime; |
||
| 12 | |||
| 13 | 2 | public function __construct(string $queueName, string $id, string $serialized, \DateTimeInterface $dateTime) |
|
| 20 | |||
| 21 | 1 | public function getQueueName(): string |
|
| 25 | |||
| 26 | 2 | public function getId(): string |
|
| 30 | |||
| 31 | 1 | public function getSerialized(): string |
|
| 35 | |||
| 36 | public function getDateTime(): \DateTimeInterface |
||
| 40 | } |
||
| 41 |