| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class NullEmailAddress implements EmailAddressInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @inheritDoc |
||
| 14 | */ |
||
| 15 | 6 | public function equals(EmailAddressInterface $emailAddress): bool |
|
| 16 | { |
||
| 17 | 6 | return $emailAddress instanceof self; |
|
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritDoc |
||
| 22 | */ |
||
| 23 | 6 | public function __toString(): string |
|
| 26 | } |
||
| 27 | } |
||
| 28 |