1 | <?php namespace Arcanedev\Sanitizer\Filters; |
||
12 | class EmailFilter implements Filterable |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Main Functions |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Sanitize email of the given string. |
||
20 | * |
||
21 | * @param mixed $value |
||
22 | * @param array $options |
||
23 | * |
||
24 | * @return string|mixed |
||
25 | */ |
||
26 | 81 | public function filter($value, array $options = []) |
|
32 | } |
||
33 |