| 1 | <?php |
||
| 8 | class FloatType implements TypeInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Filter a value to be a Float |
||
| 13 | * |
||
| 14 | * @param string $value |
||
| 15 | * @param null $annotation Unused |
||
| 16 | * @throws \Minime\Annotations\ParserException |
||
| 17 | * @return float |
||
| 18 | */ |
||
| 19 | public function parse($value, $annotation = null) |
||
| 27 | |||
| 28 | } |
||
| 29 |