| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function toNode(DOMDocument $document = null) |
||
| 33 | { |
||
| 34 | if (null === $document) { |
||
| 35 | $document = new DOMDocument(); |
||
| 36 | } |
||
| 37 | |||
| 38 | /** @var DOMElement $node */ |
||
| 39 | $node = $document->createElement('MerchantAccountNumber', $this->getMerchantAccountNumber()); |
||
| 40 | |||
| 41 | return $node; |
||
| 42 | } |
||
| 43 | |||
| 59 | } |