| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | 2 | public function getXML(): \SimpleXMLElement |
|
| 46 | { |
||
| 47 | 2 | $xml = $this->createXML()->addChild('ipm:intParamDetail', '', $this->namespace('ipm')); |
|
| 48 | 2 | $xml->addAttribute('version', '2.0'); |
|
| 49 | |||
| 50 | 2 | $param = $xml->addChild('ipm:intParam'); |
|
| 51 | 2 | $this->addElements($param, $this->getDataElements(), 'ipm'); |
|
| 52 | |||
| 53 | 2 | return $xml; |
|
| 54 | } |
||
| 64 |