1 | <?php |
||
5 | final class ScheduledCommand implements BusQueCommandInterface |
||
6 | { |
||
7 | |||
8 | private $command; |
||
9 | private $dateTime; |
||
10 | private $id; |
||
11 | |||
12 | 2 | public function __construct($command, \DateTimeInterface $dateTime, string $id = null) |
|
18 | |||
19 | 1 | public function getCommand() |
|
23 | |||
24 | 1 | public function getDateTime(): \DateTimeInterface |
|
28 | |||
29 | 1 | public function getId() |
|
33 | } |
||
34 |