| 1 | <?php |
||
| 8 | class ForgotYourPasswordView implements HtmlElementInterface |
||
| 9 | { |
||
| 10 | use Renderable; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $email; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var bool |
||
| 19 | */ |
||
| 20 | private $displayEmailNotFound = false; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getEmail() : string |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $email |
||
| 32 | */ |
||
| 33 | public function setEmail(string $email) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return bool |
||
| 40 | */ |
||
| 41 | public function isDisplayEmailNotFound(): bool |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @param bool $displayEmailNotFound |
||
| 48 | */ |
||
| 49 | public function setDisplayEmailNotFound(bool $displayEmailNotFound) |
||
| 53 | } |
||
| 54 |