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