1 | <?php |
||
5 | class Email |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $value; |
||
11 | |||
12 | /** |
||
13 | * Email constructor. |
||
14 | * |
||
15 | * @param string $value |
||
16 | */ |
||
17 | protected function __construct(string $value) |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getValue(): string |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | public function __toString(): string |
||
37 | } |
||
38 |