Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | private function add(string $email) |
||
41 | { |
||
42 | if (array_key_exists($email, $this->dictionary)) { |
||
43 | return; |
||
44 | } |
||
45 | |||
46 | list($localPart) = explode('@', $email); |
||
47 | |||
48 | while (in_array($localPart.'@'.$this->domain, $this->dictionary)) { |
||
49 | $localPart = $this->increment($localPart); |
||
50 | } |
||
51 | |||
52 | $this->dictionary[$email] = $localPart.'@'.$this->domain; |
||
53 | } |
||
54 | |||
67 |