1 | <?php |
||
13 | class Token implements TokenInterface |
||
14 | { |
||
15 | private $value; |
||
16 | |||
17 | private $generatedAt; |
||
18 | |||
19 | private $expireAt; |
||
20 | |||
21 | 6 | public function __construct(string $value, DateInterval $duration) |
|
30 | |||
31 | 6 | public function value(): string |
|
35 | |||
36 | 6 | public function generatedAt(): DateTimeImmutable |
|
40 | |||
41 | 6 | public function expireAt(): DateTimeImmutable |
|
45 | } |
||
46 |