| 1 | <?php |
||
| 23 | class EmailAddressFactory implements FactoryInterface |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $email_address |
||
| 28 | * @return EmailAddress |
||
| 29 | * @throws EmailValidationException |
||
| 30 | * @throws InvalidDataTypeException |
||
| 31 | * @throws InvalidInterfaceException |
||
| 32 | * @throws InvalidArgumentException |
||
| 33 | */ |
||
| 34 | public static function create($email_address) |
||
| 41 | |||
| 42 | } |
||
| 43 | // Location: core/domain/services/factories/EmailAddressFactory.php |
||
| 44 |