| 1 | <?php |
||
| 17 | class EmailAddress |
||
| 18 | { |
||
| 19 | protected $email; |
||
| 20 | protected $domain; |
||
| 21 | protected $localPart; |
||
| 22 | |||
| 23 | public function __construct($email) |
||
| 32 | |||
| 33 | public function email() : string |
||
| 37 | |||
| 38 | public function localPart() : string |
||
| 42 | |||
| 43 | public function domain() : string |
||
| 47 | |||
| 48 | public function equals(EmailAddress $email) : bool |
||
| 52 | |||
| 53 | public function __toString() : string |
||
| 57 | } |
||
| 58 |