| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function __construct(float $amount, |
||
| 38 | int $decimals = 2, |
||
| 39 | string $thousands_sep = '', |
||
| 40 | bool $dollar_sign_prefix = false) |
||
| 41 | { |
||
| 42 | $this->amount = $amount; |
||
| 43 | $this->decimals = $decimals; |
||
| 44 | $this->thousands_sep = $thousands_sep; |
||
| 45 | $this->dollar_sign_prefix = $dollar_sign_prefix; |
||
| 46 | } |
||
| 62 |