| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class SourceLiquidation extends AbstractAgenda |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | 1 | public function getXML(): \SimpleXMLElement |
|
| 16 | { |
||
| 17 | 1 | $xml = $this->createXML()->addChild('int:sourceLiquidation', '', $this->namespace('int')); |
|
| 18 | |||
| 19 | 1 | $this->addElements($xml, $this->getDataElements(), 'typ'); |
|
| 20 | |||
| 21 | 1 | return $xml; |
|
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritDoc} |
||
| 26 | */ |
||
| 27 | 1 | protected function getDefaultDto(): Common\Dtos\AbstractDto |
|
| 30 | } |
||
| 31 | } |
||
| 32 |