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