Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
86 | protected function init() |
||
87 | { |
||
88 | $this->firstName = (string)$this->xmlDoc->Firstname; |
||
89 | $this->lastName = (string)$this->xmlDoc->Lastname; |
||
90 | $this->address = (string)$this->xmlDoc->Address; |
||
91 | $this->city = (string)$this->xmlDoc->City; |
||
92 | $this->postalCode = (string)$this->xmlDoc->PostalCode; |
||
93 | $this->country = (string)$this->xmlDoc->Country; |
||
94 | } |
||
95 | } |
||
96 |