| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | string $code, |
||
| 32 | string $symbol, |
||
| 33 | string $decimalSeparator, |
||
| 34 | string $thousandsSeparator, |
||
| 35 | string $symbolPosition = 'before' |
||
| 36 | ) { |
||
| 37 | $this->code = $code; |
||
| 38 | $this->symbol = $symbol; |
||
| 39 | $this->decimalSeparator = $decimalSeparator; |
||
| 40 | $this->thousandsSeparator = $thousandsSeparator; |
||
| 41 | $this->symbolPosition = $symbolPosition; |
||
| 42 | } |
||
| 84 |