| Conditions | 3 | 
| Paths | 3 | 
| Total Lines | 17 | 
| Code Lines | 13 | 
| Lines | 17 | 
| Ratio | 100 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 33 | protected function fixValue() | ||
| 34 |     { | ||
| 35 | parent::fixValue(); | ||
| 36 |         switch (strtolower($this->value)) { | ||
| 37 | case 'inf': | ||
| 38 | $this->value = INF; | ||
| 39 | return; | ||
| 40 | case '-inf': | ||
| 41 | $this->value = -INF; | ||
| 42 | return; | ||
| 43 | default: | ||
| 44 | $this->value = filter_var($this->value, FILTER_VALIDATE_FLOAT, ['options' => [ | ||
| 45 | 'default' => 'NaN', // value to return if the filter fails | ||
| 46 | 'decimal' => '.' | ||
| 47 | ]]); | ||
| 48 | } | ||
| 49 | } | ||
| 50 | |||
| 56 |