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