1 | <?php |
||
8 | class TokenNotFoundView implements HtmlElementInterface |
||
9 | { |
||
10 | use Renderable; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $token; |
||
16 | |||
17 | /** |
||
18 | * EmailSentView constructor. |
||
19 | * |
||
20 | * @param string $token |
||
21 | */ |
||
22 | public function __construct($token) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getToken(): string |
||
34 | } |
||
35 |