1 | <?php |
||
18 | class Number implements FilterInterface |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * Returns the result of filtering $value |
||
23 | * |
||
24 | * @param mixed $value |
||
25 | * |
||
26 | * @throws Exception\CannotFilterValueException |
||
27 | * If filtering $value is impossible. |
||
28 | * |
||
29 | * @return mixed |
||
30 | */ |
||
31 | 4 | public function filter($value) |
|
35 | } |