1 | <?php |
||
7 | class RedisMailJob extends MailJob |
||
8 | { |
||
9 | use EventHandlerTrait; |
||
10 | |||
11 | /** |
||
12 | * @var int the unix timestamp the job should be processed |
||
13 | */ |
||
14 | private $timeToSend; |
||
15 | |||
16 | /** |
||
17 | * @return int the timestamp |
||
18 | */ |
||
19 | 4 | public function getTimeToSend() |
|
23 | |||
24 | /** |
||
25 | * @param int $timestamp |
||
26 | */ |
||
27 | 2 | public function setTimeToSend($timestamp) |
|
31 | } |
||
32 |