| 1 | <?php |
||
| 9 | final class EmailField |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $email; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Email constructor. |
||
| 18 | * @param string $email |
||
| 19 | */ |
||
| 20 | public function __construct(string $email) |
||
| 27 | |||
| 28 | public static function fromString(string $email): self |
||
| 32 | |||
| 33 | public function getValue(): string |
||
| 37 | } |
||
| 38 |