Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 4 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
42 | 2 | public function asDom(\DOMDocument $doc) |
|
43 | { |
||
44 | 2 | $root = $doc->createElement('PstlAdr'); |
|
45 | |||
46 | 2 | $root->appendChild($doc->createElement('Ctry', $this->country)); |
|
47 | 2 | foreach ($this->addressLines as $line) { |
|
48 | 2 | $root->appendChild($doc->createElement('AdrLine', $line)); |
|
49 | 2 | } |
|
50 | |||
51 | 2 | return $root; |
|
52 | } |
||
53 | } |
||
54 |