Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 2 | public function asDom(\DOMDocument $doc) |
|
24 | { |
||
25 | 2 | $structured = $doc->createElement('Strd'); |
|
26 | 2 | $referenceInformation = $doc->createElement('CdtrRefInf'); |
|
27 | 2 | $reference = $doc->createElement('Ref', $this->reference); |
|
28 | 2 | $referenceInformation->appendChild($reference); |
|
29 | 2 | $structured->appendChild($referenceInformation); |
|
30 | |||
31 | 2 | return $structured; |
|
32 | } |
||
33 | } |
||
34 |