| 1 | <?php |
||
| 11 | final class Email |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Filter an email |
||
| 15 | * |
||
| 16 | * The return value is the email, as expected by the \DominionEnterprises\Filterer class. |
||
| 17 | * |
||
| 18 | * @param mixed $value The value to filter. |
||
| 19 | * |
||
| 20 | * @return string The passed in $value. |
||
| 21 | * |
||
| 22 | * @throws \Exception if the value did not pass validation. |
||
| 23 | */ |
||
| 24 | public static function filter($value) |
||
| 37 | } |
||
| 38 |