| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | protected function loadXml(string $xml): SimpleXMLElement |
||
| 38 | { |
||
| 39 | $xmlProcess = new SimpleXMLElement($xml); |
||
| 40 | if (!property_exists($xmlProcess, static::TRANSACTION_ELEMENT)) { |
||
| 41 | throw new TransactionNodeMissingException(static::EXCEPTION_MESSAGE_TRANSACTION_NODE_MISSING); |
||
| 42 | } |
||
| 43 | |||
| 44 | return $xmlProcess->Transaction; |
||
| 45 | } |
||
| 69 |