1 | <?php |
||
5 | class InvalidTokenResendTimeException extends ConfirmationException |
||
6 | { |
||
7 | protected $message = 'Invalid token resend time.'; |
||
8 | |||
9 | /** |
||
10 | * @var \DateTime |
||
11 | */ |
||
12 | protected $time; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $timeAware; |
||
18 | |||
19 | /** |
||
20 | * @return \DateTime |
||
21 | */ |
||
22 | public function getTime() |
||
26 | |||
27 | /** |
||
28 | * @param \DateTime $time |
||
29 | */ |
||
30 | public function setTime($time) |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getTimeAware() |
||
42 | |||
43 | /** |
||
44 | * @param string $timeAware |
||
45 | */ |
||
46 | public function setTimeAware($timeAware) |
||
50 | } |
||
51 |