| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class FloatProperty extends AbstractProperty |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * FloatProperty constructor. |
||
| 17 | */ |
||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | $this->formatCode = NumberFormat::FORMAT_NUMBER_00; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param object $object |
||
| 25 | * @return float|mixed |
||
| 26 | * @throws PropertyException |
||
| 27 | */ |
||
| 28 | public function renderProperty(object $object) |
||
| 35 | } |
||
| 36 | } |
||
| 37 |