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