| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class Currency extends AColumn |
||
| 16 | { |
||
| 17 | protected string $currency = ''; |
||
| 18 | |||
| 19 | 3 | public function __construct(string $sourceName, string $currency) |
|
| 20 | { |
||
| 21 | 3 | $this->sourceName = $sourceName; |
|
| 22 | 3 | $this->currency = $currency; |
|
| 23 | 3 | } |
|
| 24 | |||
| 25 | 3 | public function getValue(IRow $source) |
|
| 29 | } |
||
| 30 | } |
||
| 31 |