Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function coerce($value) |
||
13 | { |
||
14 | if ($value === '') { |
||
15 | throw new InvalidTypeException('Float cannot represent non numeric value: (empty string)'); |
||
16 | } |
||
17 | |||
18 | if (\is_numeric($value) || \is_bool($value)) { |
||
19 | return (float)$value; |
||
20 | } |
||
21 | |||
22 | throw new InvalidTypeException(\sprintf('Float cannot represent non numeric value: %s', $value)); |
||
23 | } |
||
25 |