Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct($anEmail) |
||
26 | { |
||
27 | if (!filter_var($anEmail, FILTER_VALIDATE_EMAIL)) { |
||
28 | throw new EmailInvalidException(); |
||
29 | } |
||
30 | $this->email = $anEmail; |
||
31 | $this->localPart = implode(explode('@', $this->email, -1), '@'); |
||
32 | $this->domain = str_replace($this->localPart . '@', '', $this->email); |
||
33 | } |
||
34 | |||
60 |