| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class MoneyFactory |
||
| 14 | { |
||
| 15 | private DecimalMoneyParser $decimalMoneyParser; |
||
| 16 | |||
| 17 | public function __construct() |
||
| 18 | { |
||
| 19 | $this->decimalMoneyParser = new DecimalMoneyParser(new ISOCurrencies()); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function create(SimpleXMLElement $xmlAmount, ?SimpleXMLElement $CdtDbtInd): Money |
||
| 36 | ); |
||
| 37 | } |
||
| 39 |