Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 4 | public function setData(array $data): parent |
|
30 | { |
||
31 | // pass to header |
||
32 | 4 | $desc = new Desc($this->namespacesPaths, $this->sanitizeEncoding, $this->companyRegistrationNumber, $this->resolveOptions, $this->normalizerFactory); |
|
33 | 4 | $data = ['header' => $desc->setDirectionalVariable($this->useOneDirectionalVariables)->setData($data)]; |
|
34 | |||
35 | 4 | return parent::setData($data); |
|
|
|||
36 | } |
||
60 |