| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 44 | public function create_AccountInfo($accountinfo) |
||
| 45 | { |
||
| 46 | if (isset($this->AccountInfo)) return; |
||
| 47 | |||
| 48 | $this->AccountInfo = $this->createElement('AccountInfo'); |
||
| 49 | $this->Response->appendChild($this->AccountInfo); |
||
| 50 | |||
| 51 | foreach($accountinfo as $parameter=>$value) |
||
| 52 | { |
||
| 53 | $this->AccountInfo->appendChild($this->createElement($parameter, $value)); |
||
| 54 | } |
||
| 57 |