Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
17 | class Price extends AbstractAgenda |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 2 | public function getXML(): \SimpleXMLElement |
|
23 | { |
||
24 | 2 | $xml = $this->createXML()->addChild('stk:stockPriceItem', '', $this->namespace('stk')); |
|
25 | |||
26 | 2 | return $this->addRefElement($xml, 'stk:stockPrice', $this->data); |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | protected function configureOptions(OptionsResolver $resolver): void |
|
36 | } |
||
37 | } |
||
38 |