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