| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class Record extends AbstractAgenda |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | 3 | public function setData(array $data): parent |
|
| 23 | { |
||
| 24 | // process filter |
||
| 25 | 3 | $filter = new Filter($this->namespacesPaths, $this->sanitizeEncoding, $this->companyRegistrationNumber, $this->resolveOptions, $this->normalizerFactory); |
|
| 26 | 3 | $data['filter'] = $filter->setDirectionalVariable($this->useOneDirectionalVariables)->setData($data['filter']); |
|
| 27 | |||
| 28 | 3 | return parent::setData($data); |
|
|
|
|||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 2 | public function getXML(): \SimpleXMLElement |
|
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | 1 | protected function configureOptions(Common\OptionsResolver $resolver): void |
|
| 54 | } |
||
| 55 | } |
||
| 56 |